blob: f4f3edcdaf8d85bbdbd241d8ccb647da2ca8bf54 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * raid10.c : Multiple Devices driver for Linux
3 *
4 * Copyright (C) 2000-2004 Neil Brown
5 *
6 * RAID-10 support for md.
7 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008 * Base on code in raid1.c. See raid1.c for further copyright information.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * You should have received a copy of the GNU General Public License
17 * (for example /usr/src/linux/COPYING); if not, write to the Free
18 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Stephen Rothwell25570722008-10-15 09:09:21 +110022#include <linux/delay.h>
NeilBrownbff61972009-03-31 14:33:13 +110023#include <linux/blkdev.h>
Paul Gortmaker056075c2011-07-03 13:58:33 -040024#include <linux/module.h>
NeilBrownbff61972009-03-31 14:33:13 +110025#include <linux/seq_file.h>
Christian Dietrich8bda4702011-07-27 11:00:36 +100026#include <linux/ratelimit.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110027#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110028#include "raid10.h"
Trela, Maciejdab8b292010-03-08 16:02:45 +110029#include "raid0.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110030#include "bitmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/*
33 * RAID10 provides a combination of RAID0 and RAID1 functionality.
34 * The layout of data is defined by
35 * chunk_size
36 * raid_disks
37 * near_copies (stored in low byte of layout)
38 * far_copies (stored in second byte of layout)
NeilBrownc93983b2006-06-26 00:27:41 -070039 * far_offset (stored in bit 16 of layout )
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 *
41 * The data to be stored is divided into chunks using chunksize.
42 * Each device is divided into far_copies sections.
43 * In each section, chunks are laid out in a style similar to raid0, but
44 * near_copies copies of each chunk is stored (each on a different drive).
45 * The starting device for each section is offset near_copies from the starting
46 * device of the previous section.
NeilBrownc93983b2006-06-26 00:27:41 -070047 * Thus they are (near_copies*far_copies) of each chunk, and each is on a different
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 * drive.
49 * near_copies and far_copies must be at least one, and their product is at most
50 * raid_disks.
NeilBrownc93983b2006-06-26 00:27:41 -070051 *
52 * If far_offset is true, then the far_copies are handled a bit differently.
53 * The copies are still in different stripes, but instead of be very far apart
54 * on disk, there are adjacent stripes.
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 */
56
57/*
58 * Number of guaranteed r10bios in case of extreme VM load:
59 */
60#define NR_RAID10_BIOS 256
61
NeilBrown34db0cd2011-10-11 16:50:01 +110062/* When there are this many requests queue to be written by
63 * the raid10 thread, we become 'congested' to provide back-pressure
64 * for writeback.
65 */
66static int max_queued_requests = 1024;
67
NeilBrowne879a872011-10-11 16:49:02 +110068static void allow_barrier(struct r10conf *conf);
69static void lower_barrier(struct r10conf *conf);
NeilBrownfae8cc52012-02-14 11:10:10 +110070static int enough(struct r10conf *conf, int ignore);
NeilBrown0a27ec92006-01-06 00:20:13 -080071
Al Virodd0fc662005-10-07 07:46:04 +010072static void * r10bio_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
NeilBrowne879a872011-10-11 16:49:02 +110074 struct r10conf *conf = data;
NeilBrown9f2c9d12011-10-11 16:48:43 +110075 int size = offsetof(struct r10bio, devs[conf->copies]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
NeilBrown69335ef2011-12-23 10:17:54 +110077 /* allocate a r10bio with room for raid_disks entries in the
78 * bios array */
Jens Axboe7eaceac2011-03-10 08:52:07 +010079 return kzalloc(size, gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
82static void r10bio_pool_free(void *r10_bio, void *data)
83{
84 kfree(r10_bio);
85}
86
NeilBrown0310fa22008-08-05 15:54:14 +100087/* Maximum size of each resync request */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#define RESYNC_BLOCK_SIZE (64*1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#define RESYNC_PAGES ((RESYNC_BLOCK_SIZE + PAGE_SIZE-1) / PAGE_SIZE)
NeilBrown0310fa22008-08-05 15:54:14 +100090/* amount of memory to reserve for resync requests */
91#define RESYNC_WINDOW (1024*1024)
92/* maximum number of concurrent requests, memory permitting */
93#define RESYNC_DEPTH (32*1024*1024/RESYNC_BLOCK_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95/*
96 * When performing a resync, we need to read and compare, so
97 * we need as many pages are there are copies.
98 * When performing a recovery, we need 2 bios, one for read,
99 * one for write (we recover only one drive per r10buf)
100 *
101 */
Al Virodd0fc662005-10-07 07:46:04 +0100102static void * r10buf_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
NeilBrowne879a872011-10-11 16:49:02 +1100104 struct r10conf *conf = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 struct page *page;
NeilBrown9f2c9d12011-10-11 16:48:43 +1100106 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 struct bio *bio;
108 int i, j;
109 int nalloc;
110
111 r10_bio = r10bio_pool_alloc(gfp_flags, conf);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100112 if (!r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 if (test_bit(MD_RECOVERY_SYNC, &conf->mddev->recovery))
116 nalloc = conf->copies; /* resync */
117 else
118 nalloc = 2; /* recovery */
119
120 /*
121 * Allocate bios.
122 */
123 for (j = nalloc ; j-- ; ) {
NeilBrown67465572010-10-26 17:33:54 +1100124 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (!bio)
126 goto out_free_bio;
127 r10_bio->devs[j].bio = bio;
NeilBrown69335ef2011-12-23 10:17:54 +1100128 if (!conf->have_replacement)
129 continue;
130 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
131 if (!bio)
132 goto out_free_bio;
133 r10_bio->devs[j].repl_bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135 /*
136 * Allocate RESYNC_PAGES data pages and attach them
137 * where needed.
138 */
139 for (j = 0 ; j < nalloc; j++) {
NeilBrown69335ef2011-12-23 10:17:54 +1100140 struct bio *rbio = r10_bio->devs[j].repl_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 bio = r10_bio->devs[j].bio;
142 for (i = 0; i < RESYNC_PAGES; i++) {
Namhyung Kimc65060a2011-07-18 17:38:49 +1000143 if (j == 1 && !test_bit(MD_RECOVERY_SYNC,
144 &conf->mddev->recovery)) {
145 /* we can share bv_page's during recovery */
146 struct bio *rbio = r10_bio->devs[0].bio;
147 page = rbio->bi_io_vec[i].bv_page;
148 get_page(page);
149 } else
150 page = alloc_page(gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (unlikely(!page))
152 goto out_free_pages;
153
154 bio->bi_io_vec[i].bv_page = page;
NeilBrown69335ef2011-12-23 10:17:54 +1100155 if (rbio)
156 rbio->bi_io_vec[i].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
158 }
159
160 return r10_bio;
161
162out_free_pages:
163 for ( ; i > 0 ; i--)
NeilBrown1345b1d2006-01-06 00:20:40 -0800164 safe_put_page(bio->bi_io_vec[i-1].bv_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 while (j--)
166 for (i = 0; i < RESYNC_PAGES ; i++)
NeilBrown1345b1d2006-01-06 00:20:40 -0800167 safe_put_page(r10_bio->devs[j].bio->bi_io_vec[i].bv_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 j = -1;
169out_free_bio:
NeilBrown69335ef2011-12-23 10:17:54 +1100170 while (++j < nalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 bio_put(r10_bio->devs[j].bio);
NeilBrown69335ef2011-12-23 10:17:54 +1100172 if (r10_bio->devs[j].repl_bio)
173 bio_put(r10_bio->devs[j].repl_bio);
174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 r10bio_pool_free(r10_bio, conf);
176 return NULL;
177}
178
179static void r10buf_pool_free(void *__r10_bio, void *data)
180{
181 int i;
NeilBrowne879a872011-10-11 16:49:02 +1100182 struct r10conf *conf = data;
NeilBrown9f2c9d12011-10-11 16:48:43 +1100183 struct r10bio *r10bio = __r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 int j;
185
186 for (j=0; j < conf->copies; j++) {
187 struct bio *bio = r10bio->devs[j].bio;
188 if (bio) {
189 for (i = 0; i < RESYNC_PAGES; i++) {
NeilBrown1345b1d2006-01-06 00:20:40 -0800190 safe_put_page(bio->bi_io_vec[i].bv_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 bio->bi_io_vec[i].bv_page = NULL;
192 }
193 bio_put(bio);
194 }
NeilBrown69335ef2011-12-23 10:17:54 +1100195 bio = r10bio->devs[j].repl_bio;
196 if (bio)
197 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199 r10bio_pool_free(r10bio, conf);
200}
201
NeilBrowne879a872011-10-11 16:49:02 +1100202static void put_all_bios(struct r10conf *conf, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 int i;
205
206 for (i = 0; i < conf->copies; i++) {
207 struct bio **bio = & r10_bio->devs[i].bio;
NeilBrown749c55e2011-07-28 11:39:24 +1000208 if (!BIO_SPECIAL(*bio))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 bio_put(*bio);
210 *bio = NULL;
NeilBrown69335ef2011-12-23 10:17:54 +1100211 bio = &r10_bio->devs[i].repl_bio;
212 if (r10_bio->read_slot < 0 && !BIO_SPECIAL(*bio))
213 bio_put(*bio);
214 *bio = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216}
217
NeilBrown9f2c9d12011-10-11 16:48:43 +1100218static void free_r10bio(struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
NeilBrowne879a872011-10-11 16:49:02 +1100220 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 put_all_bios(conf, r10_bio);
223 mempool_free(r10_bio, conf->r10bio_pool);
224}
225
NeilBrown9f2c9d12011-10-11 16:48:43 +1100226static void put_buf(struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
NeilBrowne879a872011-10-11 16:49:02 +1100228 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 mempool_free(r10_bio, conf->r10buf_pool);
231
NeilBrown0a27ec92006-01-06 00:20:13 -0800232 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
NeilBrown9f2c9d12011-10-11 16:48:43 +1100235static void reschedule_retry(struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 unsigned long flags;
NeilBrownfd01b882011-10-11 16:47:53 +1100238 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +1100239 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 spin_lock_irqsave(&conf->device_lock, flags);
242 list_add(&r10_bio->retry_list, &conf->retry_list);
NeilBrown4443ae12006-01-06 00:20:28 -0800243 conf->nr_queued ++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 spin_unlock_irqrestore(&conf->device_lock, flags);
245
Arthur Jones388667b2008-07-25 12:03:38 -0700246 /* wake up frozen array... */
247 wake_up(&conf->wait_barrier);
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 md_wakeup_thread(mddev->thread);
250}
251
252/*
253 * raid_end_bio_io() is called when we have finished servicing a mirrored
254 * operation and are ready to return a success/failure code to the buffer
255 * cache layer.
256 */
NeilBrown9f2c9d12011-10-11 16:48:43 +1100257static void raid_end_bio_io(struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
259 struct bio *bio = r10_bio->master_bio;
NeilBrown856e08e2011-07-28 11:39:23 +1000260 int done;
NeilBrowne879a872011-10-11 16:49:02 +1100261 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
NeilBrown856e08e2011-07-28 11:39:23 +1000263 if (bio->bi_phys_segments) {
264 unsigned long flags;
265 spin_lock_irqsave(&conf->device_lock, flags);
266 bio->bi_phys_segments--;
267 done = (bio->bi_phys_segments == 0);
268 spin_unlock_irqrestore(&conf->device_lock, flags);
269 } else
270 done = 1;
271 if (!test_bit(R10BIO_Uptodate, &r10_bio->state))
272 clear_bit(BIO_UPTODATE, &bio->bi_flags);
273 if (done) {
274 bio_endio(bio, 0);
275 /*
276 * Wake up any possible resync thread that waits for the device
277 * to go idle.
278 */
279 allow_barrier(conf);
280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 free_r10bio(r10_bio);
282}
283
284/*
285 * Update disk head position estimator based on IRQ completion info.
286 */
NeilBrown9f2c9d12011-10-11 16:48:43 +1100287static inline void update_head_pos(int slot, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
NeilBrowne879a872011-10-11 16:49:02 +1100289 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 conf->mirrors[r10_bio->devs[slot].devnum].head_position =
292 r10_bio->devs[slot].addr + (r10_bio->sectors);
293}
294
Namhyung Kim778ca012011-07-18 17:38:47 +1000295/*
296 * Find the disk number which triggered given bio
297 */
NeilBrowne879a872011-10-11 16:49:02 +1100298static int find_bio_disk(struct r10conf *conf, struct r10bio *r10_bio,
NeilBrown69335ef2011-12-23 10:17:54 +1100299 struct bio *bio, int *slotp, int *replp)
Namhyung Kim778ca012011-07-18 17:38:47 +1000300{
301 int slot;
NeilBrown69335ef2011-12-23 10:17:54 +1100302 int repl = 0;
Namhyung Kim778ca012011-07-18 17:38:47 +1000303
NeilBrown69335ef2011-12-23 10:17:54 +1100304 for (slot = 0; slot < conf->copies; slot++) {
Namhyung Kim778ca012011-07-18 17:38:47 +1000305 if (r10_bio->devs[slot].bio == bio)
306 break;
NeilBrown69335ef2011-12-23 10:17:54 +1100307 if (r10_bio->devs[slot].repl_bio == bio) {
308 repl = 1;
309 break;
310 }
311 }
Namhyung Kim778ca012011-07-18 17:38:47 +1000312
313 BUG_ON(slot == conf->copies);
314 update_head_pos(slot, r10_bio);
315
NeilBrown749c55e2011-07-28 11:39:24 +1000316 if (slotp)
317 *slotp = slot;
NeilBrown69335ef2011-12-23 10:17:54 +1100318 if (replp)
319 *replp = repl;
Namhyung Kim778ca012011-07-18 17:38:47 +1000320 return r10_bio->devs[slot].devnum;
321}
322
NeilBrown6712ecf2007-09-27 12:47:43 +0200323static void raid10_end_read_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9f2c9d12011-10-11 16:48:43 +1100326 struct r10bio *r10_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 int slot, dev;
NeilBrownabbf0982011-12-23 10:17:54 +1100328 struct md_rdev *rdev;
NeilBrowne879a872011-10-11 16:49:02 +1100329 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 slot = r10_bio->read_slot;
333 dev = r10_bio->devs[slot].devnum;
NeilBrownabbf0982011-12-23 10:17:54 +1100334 rdev = r10_bio->devs[slot].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 /*
336 * this branch is our 'one mirror IO has finished' event handler:
337 */
NeilBrown4443ae12006-01-06 00:20:28 -0800338 update_head_pos(slot, r10_bio);
339
340 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /*
342 * Set R10BIO_Uptodate in our master bio, so that
343 * we will return a good error code to the higher
344 * levels even if IO on some other mirrored buffer fails.
345 *
346 * The 'master' represents the composite IO operation to
347 * user-side. So if something waits for IO, then it will
348 * wait for the 'master' bio.
349 */
350 set_bit(R10BIO_Uptodate, &r10_bio->state);
NeilBrownfae8cc52012-02-14 11:10:10 +1100351 } else {
352 /* If all other devices that store this block have
353 * failed, we want to return the error upwards rather
354 * than fail the last device. Here we redefine
355 * "uptodate" to mean "Don't want to retry"
356 */
357 unsigned long flags;
358 spin_lock_irqsave(&conf->device_lock, flags);
359 if (!enough(conf, rdev->raid_disk))
360 uptodate = 1;
361 spin_unlock_irqrestore(&conf->device_lock, flags);
362 }
363 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 raid_end_bio_io(r10_bio);
NeilBrownabbf0982011-12-23 10:17:54 +1100365 rdev_dec_pending(rdev, conf->mddev);
NeilBrown4443ae12006-01-06 00:20:28 -0800366 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 /*
NeilBrown7c4e06f2011-05-11 14:53:17 +1000368 * oops, read error - keep the refcount on the rdev
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 */
370 char b[BDEVNAME_SIZE];
Christian Dietrich8bda4702011-07-27 11:00:36 +1000371 printk_ratelimited(KERN_ERR
372 "md/raid10:%s: %s: rescheduling sector %llu\n",
373 mdname(conf->mddev),
NeilBrownabbf0982011-12-23 10:17:54 +1100374 bdevname(rdev->bdev, b),
Christian Dietrich8bda4702011-07-27 11:00:36 +1000375 (unsigned long long)r10_bio->sector);
NeilBrown856e08e2011-07-28 11:39:23 +1000376 set_bit(R10BIO_ReadError, &r10_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 reschedule_retry(r10_bio);
378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
NeilBrown9f2c9d12011-10-11 16:48:43 +1100381static void close_write(struct r10bio *r10_bio)
NeilBrownbd870a12011-07-28 11:39:24 +1000382{
383 /* clear the bitmap if all writes complete successfully */
384 bitmap_endwrite(r10_bio->mddev->bitmap, r10_bio->sector,
385 r10_bio->sectors,
386 !test_bit(R10BIO_Degraded, &r10_bio->state),
387 0);
388 md_write_end(r10_bio->mddev);
389}
390
NeilBrown9f2c9d12011-10-11 16:48:43 +1100391static void one_write_done(struct r10bio *r10_bio)
NeilBrown19d5f832011-09-10 17:21:17 +1000392{
393 if (atomic_dec_and_test(&r10_bio->remaining)) {
394 if (test_bit(R10BIO_WriteError, &r10_bio->state))
395 reschedule_retry(r10_bio);
396 else {
397 close_write(r10_bio);
398 if (test_bit(R10BIO_MadeGood, &r10_bio->state))
399 reschedule_retry(r10_bio);
400 else
401 raid_end_bio_io(r10_bio);
402 }
403 }
404}
405
NeilBrown6712ecf2007-09-27 12:47:43 +0200406static void raid10_end_write_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9f2c9d12011-10-11 16:48:43 +1100409 struct r10bio *r10_bio = bio->bi_private;
Namhyung Kim778ca012011-07-18 17:38:47 +1000410 int dev;
NeilBrown749c55e2011-07-28 11:39:24 +1000411 int dec_rdev = 1;
NeilBrowne879a872011-10-11 16:49:02 +1100412 struct r10conf *conf = r10_bio->mddev->private;
NeilBrown475b0322011-12-23 10:17:55 +1100413 int slot, repl;
NeilBrown4ca40c22011-12-23 10:17:55 +1100414 struct md_rdev *rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
NeilBrown475b0322011-12-23 10:17:55 +1100416 dev = find_bio_disk(conf, r10_bio, bio, &slot, &repl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
NeilBrown475b0322011-12-23 10:17:55 +1100418 if (repl)
419 rdev = conf->mirrors[dev].replacement;
NeilBrown4ca40c22011-12-23 10:17:55 +1100420 if (!rdev) {
421 smp_rmb();
422 repl = 0;
NeilBrown475b0322011-12-23 10:17:55 +1100423 rdev = conf->mirrors[dev].rdev;
NeilBrown4ca40c22011-12-23 10:17:55 +1100424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /*
426 * this branch is our 'one mirror IO has finished' event handler:
427 */
NeilBrown6cce3b22006-01-06 00:20:16 -0800428 if (!uptodate) {
NeilBrown475b0322011-12-23 10:17:55 +1100429 if (repl)
430 /* Never record new bad blocks to replacement,
431 * just fail it.
432 */
433 md_error(rdev->mddev, rdev);
434 else {
435 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +1100436 if (!test_and_set_bit(WantReplacement, &rdev->flags))
437 set_bit(MD_RECOVERY_NEEDED,
438 &rdev->mddev->recovery);
NeilBrown475b0322011-12-23 10:17:55 +1100439 set_bit(R10BIO_WriteError, &r10_bio->state);
440 dec_rdev = 0;
441 }
NeilBrown749c55e2011-07-28 11:39:24 +1000442 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /*
444 * Set R10BIO_Uptodate in our master bio, so that
445 * we will return a good error code for to the higher
446 * levels even if IO on some other mirrored buffer fails.
447 *
448 * The 'master' represents the composite IO operation to
449 * user-side. So if something waits for IO, then it will
450 * wait for the 'master' bio.
451 */
NeilBrown749c55e2011-07-28 11:39:24 +1000452 sector_t first_bad;
453 int bad_sectors;
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 set_bit(R10BIO_Uptodate, &r10_bio->state);
456
NeilBrown749c55e2011-07-28 11:39:24 +1000457 /* Maybe we can clear some bad blocks. */
NeilBrown475b0322011-12-23 10:17:55 +1100458 if (is_badblock(rdev,
NeilBrown749c55e2011-07-28 11:39:24 +1000459 r10_bio->devs[slot].addr,
460 r10_bio->sectors,
461 &first_bad, &bad_sectors)) {
462 bio_put(bio);
NeilBrown475b0322011-12-23 10:17:55 +1100463 if (repl)
464 r10_bio->devs[slot].repl_bio = IO_MADE_GOOD;
465 else
466 r10_bio->devs[slot].bio = IO_MADE_GOOD;
NeilBrown749c55e2011-07-28 11:39:24 +1000467 dec_rdev = 0;
468 set_bit(R10BIO_MadeGood, &r10_bio->state);
469 }
470 }
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 /*
473 *
474 * Let's see if all mirrored write operations have finished
475 * already.
476 */
NeilBrown19d5f832011-09-10 17:21:17 +1000477 one_write_done(r10_bio);
NeilBrown749c55e2011-07-28 11:39:24 +1000478 if (dec_rdev)
479 rdev_dec_pending(conf->mirrors[dev].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/*
483 * RAID10 layout manager
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300484 * As well as the chunksize and raid_disks count, there are two
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 * parameters: near_copies and far_copies.
486 * near_copies * far_copies must be <= raid_disks.
487 * Normally one of these will be 1.
488 * If both are 1, we get raid0.
489 * If near_copies == raid_disks, we get raid1.
490 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300491 * Chunks are laid out in raid0 style with near_copies copies of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 * first chunk, followed by near_copies copies of the next chunk and
493 * so on.
494 * If far_copies > 1, then after 1/far_copies of the array has been assigned
495 * as described above, we start again with a device offset of near_copies.
496 * So we effectively have another copy of the whole array further down all
497 * the drives, but with blocks on different drives.
498 * With this layout, and block is never stored twice on the one device.
499 *
500 * raid10_find_phys finds the sector offset of a given virtual sector
NeilBrownc93983b2006-06-26 00:27:41 -0700501 * on each device that it is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 *
503 * raid10_find_virt does the reverse mapping, from a device and a
504 * sector offset to a virtual address
505 */
506
NeilBrowne879a872011-10-11 16:49:02 +1100507static void raid10_find_phys(struct r10conf *conf, struct r10bio *r10bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 int n,f;
510 sector_t sector;
511 sector_t chunk;
512 sector_t stripe;
513 int dev;
514
515 int slot = 0;
516
517 /* now calculate first sector/dev */
518 chunk = r10bio->sector >> conf->chunk_shift;
519 sector = r10bio->sector & conf->chunk_mask;
520
521 chunk *= conf->near_copies;
522 stripe = chunk;
523 dev = sector_div(stripe, conf->raid_disks);
NeilBrownc93983b2006-06-26 00:27:41 -0700524 if (conf->far_offset)
525 stripe *= conf->far_copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 sector += stripe << conf->chunk_shift;
528
529 /* and calculate all the others */
530 for (n=0; n < conf->near_copies; n++) {
531 int d = dev;
532 sector_t s = sector;
533 r10bio->devs[slot].addr = sector;
534 r10bio->devs[slot].devnum = d;
535 slot++;
536
537 for (f = 1; f < conf->far_copies; f++) {
538 d += conf->near_copies;
539 if (d >= conf->raid_disks)
540 d -= conf->raid_disks;
541 s += conf->stride;
542 r10bio->devs[slot].devnum = d;
543 r10bio->devs[slot].addr = s;
544 slot++;
545 }
546 dev++;
547 if (dev >= conf->raid_disks) {
548 dev = 0;
549 sector += (conf->chunk_mask + 1);
550 }
551 }
552 BUG_ON(slot != conf->copies);
553}
554
NeilBrowne879a872011-10-11 16:49:02 +1100555static sector_t raid10_find_virt(struct r10conf *conf, sector_t sector, int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 sector_t offset, chunk, vchunk;
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 offset = sector & conf->chunk_mask;
NeilBrownc93983b2006-06-26 00:27:41 -0700560 if (conf->far_offset) {
561 int fc;
562 chunk = sector >> conf->chunk_shift;
563 fc = sector_div(chunk, conf->far_copies);
564 dev -= fc * conf->near_copies;
565 if (dev < 0)
566 dev += conf->raid_disks;
567 } else {
NeilBrown64a742b2007-02-28 20:11:18 -0800568 while (sector >= conf->stride) {
NeilBrownc93983b2006-06-26 00:27:41 -0700569 sector -= conf->stride;
570 if (dev < conf->near_copies)
571 dev += conf->raid_disks - conf->near_copies;
572 else
573 dev -= conf->near_copies;
574 }
575 chunk = sector >> conf->chunk_shift;
576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 vchunk = chunk * conf->raid_disks + dev;
578 sector_div(vchunk, conf->near_copies);
579 return (vchunk << conf->chunk_shift) + offset;
580}
581
582/**
583 * raid10_mergeable_bvec -- tell bio layer if a two requests can be merged
584 * @q: request queue
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200585 * @bvm: properties of new bio
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 * @biovec: the request that could be merged to it.
587 *
588 * Return amount of bytes we can accept at this offset
589 * If near_copies == raid_disk, there are no striping issues,
590 * but in that case, the function isn't called at all.
591 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200592static int raid10_mergeable_bvec(struct request_queue *q,
593 struct bvec_merge_data *bvm,
594 struct bio_vec *biovec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
NeilBrownfd01b882011-10-11 16:47:53 +1100596 struct mddev *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200597 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +1000599 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200600 unsigned int bio_sectors = bvm->bi_size >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
603 if (max < 0) max = 0; /* bio_add cannot handle a negative return */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200604 if (max <= biovec->bv_len && bio_sectors == 0)
605 return biovec->bv_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 else
607 return max;
608}
609
610/*
611 * This routine returns the disk from which the requested read should
612 * be done. There is a per-array 'next expected sequential IO' sector
613 * number - if this matches on the next IO then we use the last disk.
614 * There is also a per-disk 'last know head position' sector that is
615 * maintained from IRQ contexts, both the normal and the resync IO
616 * completion handlers update this position correctly. If there is no
617 * perfect sequential match then we pick the disk whose head is closest.
618 *
619 * If there are 2 mirrors in the same 2 devices, performance degrades
620 * because position is mirror, not device based.
621 *
622 * The rdev for the device selected will have nr_pending incremented.
623 */
624
625/*
626 * FIXME: possibly should rethink readbalancing and do it differently
627 * depending on near_copies / far_copies geometry.
628 */
NeilBrown96c3fd12011-12-23 10:17:54 +1100629static struct md_rdev *read_balance(struct r10conf *conf,
630 struct r10bio *r10_bio,
631 int *max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000633 const sector_t this_sector = r10_bio->sector;
NeilBrown56d99122011-05-11 14:27:03 +1000634 int disk, slot;
NeilBrown856e08e2011-07-28 11:39:23 +1000635 int sectors = r10_bio->sectors;
636 int best_good_sectors;
NeilBrown56d99122011-05-11 14:27:03 +1000637 sector_t new_distance, best_dist;
NeilBrownabbf0982011-12-23 10:17:54 +1100638 struct md_rdev *rdev, *best_rdev;
NeilBrown56d99122011-05-11 14:27:03 +1000639 int do_balance;
640 int best_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 raid10_find_phys(conf, r10_bio);
643 rcu_read_lock();
NeilBrown56d99122011-05-11 14:27:03 +1000644retry:
NeilBrown856e08e2011-07-28 11:39:23 +1000645 sectors = r10_bio->sectors;
NeilBrown56d99122011-05-11 14:27:03 +1000646 best_slot = -1;
NeilBrownabbf0982011-12-23 10:17:54 +1100647 best_rdev = NULL;
NeilBrown56d99122011-05-11 14:27:03 +1000648 best_dist = MaxSector;
NeilBrown856e08e2011-07-28 11:39:23 +1000649 best_good_sectors = 0;
NeilBrown56d99122011-05-11 14:27:03 +1000650 do_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 /*
652 * Check if we can balance. We can balance on the whole
NeilBrown6cce3b22006-01-06 00:20:16 -0800653 * device if no resync is going on (recovery is ok), or below
654 * the resync window. We take the first readable disk when
655 * above the resync window.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
657 if (conf->mddev->recovery_cp < MaxSector
NeilBrown56d99122011-05-11 14:27:03 +1000658 && (this_sector + sectors >= conf->next_resync))
659 do_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
NeilBrown56d99122011-05-11 14:27:03 +1000661 for (slot = 0; slot < conf->copies ; slot++) {
NeilBrown856e08e2011-07-28 11:39:23 +1000662 sector_t first_bad;
663 int bad_sectors;
664 sector_t dev_sector;
665
NeilBrown56d99122011-05-11 14:27:03 +1000666 if (r10_bio->devs[slot].bio == IO_BLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 continue;
NeilBrown56d99122011-05-11 14:27:03 +1000668 disk = r10_bio->devs[slot].devnum;
NeilBrownabbf0982011-12-23 10:17:54 +1100669 rdev = rcu_dereference(conf->mirrors[disk].replacement);
670 if (rdev == NULL || test_bit(Faulty, &rdev->flags) ||
671 r10_bio->devs[slot].addr + sectors > rdev->recovery_offset)
672 rdev = rcu_dereference(conf->mirrors[disk].rdev);
NeilBrown56d99122011-05-11 14:27:03 +1000673 if (rdev == NULL)
674 continue;
NeilBrownabbf0982011-12-23 10:17:54 +1100675 if (test_bit(Faulty, &rdev->flags))
676 continue;
677 if (!test_bit(In_sync, &rdev->flags) &&
678 r10_bio->devs[slot].addr + sectors > rdev->recovery_offset)
NeilBrown56d99122011-05-11 14:27:03 +1000679 continue;
680
NeilBrown856e08e2011-07-28 11:39:23 +1000681 dev_sector = r10_bio->devs[slot].addr;
682 if (is_badblock(rdev, dev_sector, sectors,
683 &first_bad, &bad_sectors)) {
684 if (best_dist < MaxSector)
685 /* Already have a better slot */
686 continue;
687 if (first_bad <= dev_sector) {
688 /* Cannot read here. If this is the
689 * 'primary' device, then we must not read
690 * beyond 'bad_sectors' from another device.
691 */
692 bad_sectors -= (dev_sector - first_bad);
693 if (!do_balance && sectors > bad_sectors)
694 sectors = bad_sectors;
695 if (best_good_sectors > sectors)
696 best_good_sectors = sectors;
697 } else {
698 sector_t good_sectors =
699 first_bad - dev_sector;
700 if (good_sectors > best_good_sectors) {
701 best_good_sectors = good_sectors;
702 best_slot = slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100703 best_rdev = rdev;
NeilBrown856e08e2011-07-28 11:39:23 +1000704 }
705 if (!do_balance)
706 /* Must read from here */
707 break;
708 }
709 continue;
710 } else
711 best_good_sectors = sectors;
712
NeilBrown56d99122011-05-11 14:27:03 +1000713 if (!do_balance)
714 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
NeilBrown22dfdf52005-11-28 13:44:09 -0800716 /* This optimisation is debatable, and completely destroys
717 * sequential read speed for 'far copies' arrays. So only
718 * keep it for 'near' arrays, and review those later.
719 */
NeilBrown56d99122011-05-11 14:27:03 +1000720 if (conf->near_copies > 1 && !atomic_read(&rdev->nr_pending))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 break;
Keld Simonsen8ed3a192008-03-04 14:29:34 -0800722
723 /* for far > 1 always use the lowest address */
724 if (conf->far_copies > 1)
NeilBrown56d99122011-05-11 14:27:03 +1000725 new_distance = r10_bio->devs[slot].addr;
Keld Simonsen8ed3a192008-03-04 14:29:34 -0800726 else
NeilBrown56d99122011-05-11 14:27:03 +1000727 new_distance = abs(r10_bio->devs[slot].addr -
728 conf->mirrors[disk].head_position);
729 if (new_distance < best_dist) {
730 best_dist = new_distance;
731 best_slot = slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100732 best_rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734 }
NeilBrownabbf0982011-12-23 10:17:54 +1100735 if (slot >= conf->copies) {
NeilBrown56d99122011-05-11 14:27:03 +1000736 slot = best_slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100737 rdev = best_rdev;
738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
NeilBrown56d99122011-05-11 14:27:03 +1000740 if (slot >= 0) {
NeilBrown56d99122011-05-11 14:27:03 +1000741 atomic_inc(&rdev->nr_pending);
742 if (test_bit(Faulty, &rdev->flags)) {
743 /* Cannot risk returning a device that failed
744 * before we inc'ed nr_pending
745 */
746 rdev_dec_pending(rdev, conf->mddev);
747 goto retry;
748 }
749 r10_bio->read_slot = slot;
750 } else
NeilBrown96c3fd12011-12-23 10:17:54 +1100751 rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 rcu_read_unlock();
NeilBrown856e08e2011-07-28 11:39:23 +1000753 *max_sectors = best_good_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
NeilBrown96c3fd12011-12-23 10:17:54 +1100755 return rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
NeilBrown0d129222006-10-03 01:15:54 -0700758static int raid10_congested(void *data, int bits)
759{
NeilBrownfd01b882011-10-11 16:47:53 +1100760 struct mddev *mddev = data;
NeilBrowne879a872011-10-11 16:49:02 +1100761 struct r10conf *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700762 int i, ret = 0;
763
NeilBrown34db0cd2011-10-11 16:50:01 +1100764 if ((bits & (1 << BDI_async_congested)) &&
765 conf->pending_count >= max_queued_requests)
766 return 1;
767
NeilBrown3fa841d2009-09-23 18:10:29 +1000768 if (mddev_congested(mddev, bits))
769 return 1;
NeilBrown0d129222006-10-03 01:15:54 -0700770 rcu_read_lock();
NeilBrown84707f32010-03-16 17:23:35 +1100771 for (i = 0; i < conf->raid_disks && ret == 0; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100772 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
NeilBrown0d129222006-10-03 01:15:54 -0700773 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200774 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700775
776 ret |= bdi_congested(&q->backing_dev_info, bits);
777 }
778 }
779 rcu_read_unlock();
780 return ret;
781}
782
NeilBrowne879a872011-10-11 16:49:02 +1100783static void flush_pending_writes(struct r10conf *conf)
NeilBrowna35e63e2008-03-04 14:29:29 -0800784{
785 /* Any writes that have been queued but are awaiting
786 * bitmap updates get flushed here.
NeilBrowna35e63e2008-03-04 14:29:29 -0800787 */
NeilBrowna35e63e2008-03-04 14:29:29 -0800788 spin_lock_irq(&conf->device_lock);
789
790 if (conf->pending_bio_list.head) {
791 struct bio *bio;
792 bio = bio_list_get(&conf->pending_bio_list);
NeilBrown34db0cd2011-10-11 16:50:01 +1100793 conf->pending_count = 0;
NeilBrowna35e63e2008-03-04 14:29:29 -0800794 spin_unlock_irq(&conf->device_lock);
795 /* flush any pending bitmap writes to disk
796 * before proceeding w/ I/O */
797 bitmap_unplug(conf->mddev->bitmap);
NeilBrown34db0cd2011-10-11 16:50:01 +1100798 wake_up(&conf->wait_barrier);
NeilBrowna35e63e2008-03-04 14:29:29 -0800799
800 while (bio) { /* submit pending writes */
801 struct bio *next = bio->bi_next;
802 bio->bi_next = NULL;
803 generic_make_request(bio);
804 bio = next;
805 }
NeilBrowna35e63e2008-03-04 14:29:29 -0800806 } else
807 spin_unlock_irq(&conf->device_lock);
NeilBrowna35e63e2008-03-04 14:29:29 -0800808}
Jens Axboe7eaceac2011-03-10 08:52:07 +0100809
NeilBrown0a27ec92006-01-06 00:20:13 -0800810/* Barriers....
811 * Sometimes we need to suspend IO while we do something else,
812 * either some resync/recovery, or reconfigure the array.
813 * To do this we raise a 'barrier'.
814 * The 'barrier' is a counter that can be raised multiple times
815 * to count how many activities are happening which preclude
816 * normal IO.
817 * We can only raise the barrier if there is no pending IO.
818 * i.e. if nr_pending == 0.
819 * We choose only to raise the barrier if no-one is waiting for the
820 * barrier to go down. This means that as soon as an IO request
821 * is ready, no other operations which require a barrier will start
822 * until the IO request has had a chance.
823 *
824 * So: regular IO calls 'wait_barrier'. When that returns there
825 * is no backgroup IO happening, It must arrange to call
826 * allow_barrier when it has finished its IO.
827 * backgroup IO calls must call raise_barrier. Once that returns
828 * there is no normal IO happeing. It must arrange to call
829 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
NeilBrowne879a872011-10-11 16:49:02 +1100832static void raise_barrier(struct r10conf *conf, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
NeilBrown6cce3b22006-01-06 00:20:16 -0800834 BUG_ON(force && !conf->barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 spin_lock_irq(&conf->resync_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
NeilBrown6cce3b22006-01-06 00:20:16 -0800837 /* Wait until no block IO is waiting (unless 'force') */
838 wait_event_lock_irq(conf->wait_barrier, force || !conf->nr_waiting,
NeilBrownc3b328a2011-04-18 18:25:43 +1000839 conf->resync_lock, );
NeilBrown0a27ec92006-01-06 00:20:13 -0800840
841 /* block any new IO from starting */
842 conf->barrier++;
843
NeilBrownc3b328a2011-04-18 18:25:43 +1000844 /* Now wait for all pending IO to complete */
NeilBrown0a27ec92006-01-06 00:20:13 -0800845 wait_event_lock_irq(conf->wait_barrier,
846 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
NeilBrownc3b328a2011-04-18 18:25:43 +1000847 conf->resync_lock, );
NeilBrown0a27ec92006-01-06 00:20:13 -0800848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 spin_unlock_irq(&conf->resync_lock);
850}
851
NeilBrowne879a872011-10-11 16:49:02 +1100852static void lower_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -0800853{
854 unsigned long flags;
855 spin_lock_irqsave(&conf->resync_lock, flags);
856 conf->barrier--;
857 spin_unlock_irqrestore(&conf->resync_lock, flags);
858 wake_up(&conf->wait_barrier);
859}
860
NeilBrowne879a872011-10-11 16:49:02 +1100861static void wait_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -0800862{
863 spin_lock_irq(&conf->resync_lock);
864 if (conf->barrier) {
865 conf->nr_waiting++;
866 wait_event_lock_irq(conf->wait_barrier, !conf->barrier,
867 conf->resync_lock,
NeilBrownc3b328a2011-04-18 18:25:43 +1000868 );
NeilBrown0a27ec92006-01-06 00:20:13 -0800869 conf->nr_waiting--;
870 }
871 conf->nr_pending++;
872 spin_unlock_irq(&conf->resync_lock);
873}
874
NeilBrowne879a872011-10-11 16:49:02 +1100875static void allow_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -0800876{
877 unsigned long flags;
878 spin_lock_irqsave(&conf->resync_lock, flags);
879 conf->nr_pending--;
880 spin_unlock_irqrestore(&conf->resync_lock, flags);
881 wake_up(&conf->wait_barrier);
882}
883
NeilBrowne879a872011-10-11 16:49:02 +1100884static void freeze_array(struct r10conf *conf)
NeilBrown4443ae12006-01-06 00:20:28 -0800885{
886 /* stop syncio and normal IO and wait for everything to
NeilBrownf1885932006-01-06 00:20:42 -0800887 * go quiet.
NeilBrown4443ae12006-01-06 00:20:28 -0800888 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -0800889 * wait until nr_pending match nr_queued+1
890 * This is called in the context of one normal IO request
891 * that has failed. Thus any sync request that might be pending
892 * will be blocked by nr_pending, and we need to wait for
893 * pending IO requests to complete or be queued for re-try.
894 * Thus the number queued (nr_queued) plus this request (1)
895 * must match the number of pending IOs (nr_pending) before
896 * we continue.
NeilBrown4443ae12006-01-06 00:20:28 -0800897 */
898 spin_lock_irq(&conf->resync_lock);
899 conf->barrier++;
900 conf->nr_waiting++;
901 wait_event_lock_irq(conf->wait_barrier,
NeilBrown1c830532008-03-04 14:29:35 -0800902 conf->nr_pending == conf->nr_queued+1,
NeilBrown4443ae12006-01-06 00:20:28 -0800903 conf->resync_lock,
NeilBrownc3b328a2011-04-18 18:25:43 +1000904 flush_pending_writes(conf));
905
NeilBrown4443ae12006-01-06 00:20:28 -0800906 spin_unlock_irq(&conf->resync_lock);
907}
908
NeilBrowne879a872011-10-11 16:49:02 +1100909static void unfreeze_array(struct r10conf *conf)
NeilBrown4443ae12006-01-06 00:20:28 -0800910{
911 /* reverse the effect of the freeze */
912 spin_lock_irq(&conf->resync_lock);
913 conf->barrier--;
914 conf->nr_waiting--;
915 wake_up(&conf->wait_barrier);
916 spin_unlock_irq(&conf->resync_lock);
917}
918
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -0700919static void make_request(struct mddev *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
NeilBrowne879a872011-10-11 16:49:02 +1100921 struct r10conf *conf = mddev->private;
NeilBrown9f2c9d12011-10-11 16:48:43 +1100922 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 struct bio *read_bio;
924 int i;
925 int chunk_sects = conf->chunk_mask + 1;
Jens Axboea3623572005-11-01 09:26:16 +0100926 const int rw = bio_data_dir(bio);
NeilBrown2c7d46e2010-08-18 16:16:05 +1000927 const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
Tejun Heoe9c74692010-09-03 11:56:18 +0200928 const unsigned long do_fua = (bio->bi_rw & REQ_FUA);
NeilBrown6cce3b22006-01-06 00:20:16 -0800929 unsigned long flags;
NeilBrown3cb03002011-10-11 16:45:26 +1100930 struct md_rdev *blocked_rdev;
NeilBrownc3b328a2011-04-18 18:25:43 +1000931 int plugged;
NeilBrownd4432c22011-07-28 11:39:24 +1000932 int sectors_handled;
933 int max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Tejun Heoe9c74692010-09-03 11:56:18 +0200935 if (unlikely(bio->bi_rw & REQ_FLUSH)) {
936 md_flush_request(mddev, bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +0200937 return;
NeilBrowne5dcdd82005-09-09 16:23:41 -0700938 }
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /* If this request crosses a chunk boundary, we need to
941 * split it. This will only happen for 1 PAGE (or less) requests.
942 */
943 if (unlikely( (bio->bi_sector & conf->chunk_mask) + (bio->bi_size >> 9)
944 > chunk_sects &&
945 conf->near_copies < conf->raid_disks)) {
946 struct bio_pair *bp;
947 /* Sanity check -- queue functions should prevent this happening */
948 if (bio->bi_vcnt != 1 ||
949 bio->bi_idx != 0)
950 goto bad_map;
951 /* This is a one page bio that upper layers
952 * refuse to split for us, so we need to split it.
953 */
Denis ChengRq6feef532008-10-09 08:57:05 +0200954 bp = bio_split(bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 chunk_sects - (bio->bi_sector & (chunk_sects - 1)) );
NeilBrown51e9ac72010-08-07 21:17:00 +1000956
957 /* Each of these 'make_request' calls will call 'wait_barrier'.
958 * If the first succeeds but the second blocks due to the resync
959 * thread raising the barrier, we will deadlock because the
960 * IO to the underlying device will be queued in generic_make_request
961 * and will never complete, so will never reduce nr_pending.
962 * So increment nr_waiting here so no new raise_barriers will
963 * succeed, and so the second wait_barrier cannot block.
964 */
965 spin_lock_irq(&conf->resync_lock);
966 conf->nr_waiting++;
967 spin_unlock_irq(&conf->resync_lock);
968
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +0200969 make_request(mddev, &bp->bio1);
970 make_request(mddev, &bp->bio2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
NeilBrown51e9ac72010-08-07 21:17:00 +1000972 spin_lock_irq(&conf->resync_lock);
973 conf->nr_waiting--;
974 wake_up(&conf->wait_barrier);
975 spin_unlock_irq(&conf->resync_lock);
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 bio_pair_release(bp);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +0200978 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 bad_map:
NeilBrown128595e2010-05-03 14:47:14 +1000980 printk("md/raid10:%s: make_request bug: can't convert block across chunks"
981 " or bigger than %dk %llu %d\n", mdname(mddev), chunk_sects/2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 (unsigned long long)bio->bi_sector, bio->bi_size >> 10);
983
NeilBrown6712ecf2007-09-27 12:47:43 +0200984 bio_io_error(bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +0200985 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987
NeilBrown3d310eb2005-06-21 17:17:26 -0700988 md_write_start(mddev, bio);
NeilBrown06d91a52005-06-21 17:17:12 -0700989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 /*
991 * Register the new request and wait if the reconstruction
992 * thread has put up a bar for new requests.
993 * Continue immediately if no resync is active currently.
994 */
NeilBrown0a27ec92006-01-06 00:20:13 -0800995 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
998
999 r10_bio->master_bio = bio;
1000 r10_bio->sectors = bio->bi_size >> 9;
1001
1002 r10_bio->mddev = mddev;
1003 r10_bio->sector = bio->bi_sector;
NeilBrown6cce3b22006-01-06 00:20:16 -08001004 r10_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
NeilBrown856e08e2011-07-28 11:39:23 +10001006 /* We might need to issue multiple reads to different
1007 * devices if there are bad blocks around, so we keep
1008 * track of the number of reads in bio->bi_phys_segments.
1009 * If this is 0, there is only one r10_bio and no locking
1010 * will be needed when the request completes. If it is
1011 * non-zero, then it is the number of not-completed requests.
1012 */
1013 bio->bi_phys_segments = 0;
1014 clear_bit(BIO_SEG_VALID, &bio->bi_flags);
1015
Jens Axboea3623572005-11-01 09:26:16 +01001016 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 /*
1018 * read balancing logic:
1019 */
NeilBrown96c3fd12011-12-23 10:17:54 +11001020 struct md_rdev *rdev;
NeilBrown856e08e2011-07-28 11:39:23 +10001021 int slot;
1022
1023read_again:
NeilBrown96c3fd12011-12-23 10:17:54 +11001024 rdev = read_balance(conf, r10_bio, &max_sectors);
1025 if (!rdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 raid_end_bio_io(r10_bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001027 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
NeilBrown96c3fd12011-12-23 10:17:54 +11001029 slot = r10_bio->read_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
NeilBrowna167f662010-10-26 18:31:13 +11001031 read_bio = bio_clone_mddev(bio, GFP_NOIO, mddev);
NeilBrown856e08e2011-07-28 11:39:23 +10001032 md_trim_bio(read_bio, r10_bio->sector - bio->bi_sector,
1033 max_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 r10_bio->devs[slot].bio = read_bio;
NeilBrownabbf0982011-12-23 10:17:54 +11001036 r10_bio->devs[slot].rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 read_bio->bi_sector = r10_bio->devs[slot].addr +
NeilBrown96c3fd12011-12-23 10:17:54 +11001039 rdev->data_offset;
1040 read_bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 read_bio->bi_end_io = raid10_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001042 read_bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 read_bio->bi_private = r10_bio;
1044
NeilBrown856e08e2011-07-28 11:39:23 +10001045 if (max_sectors < r10_bio->sectors) {
1046 /* Could not read all from this device, so we will
1047 * need another r10_bio.
1048 */
NeilBrown856e08e2011-07-28 11:39:23 +10001049 sectors_handled = (r10_bio->sectors + max_sectors
1050 - bio->bi_sector);
1051 r10_bio->sectors = max_sectors;
1052 spin_lock_irq(&conf->device_lock);
1053 if (bio->bi_phys_segments == 0)
1054 bio->bi_phys_segments = 2;
1055 else
1056 bio->bi_phys_segments++;
1057 spin_unlock(&conf->device_lock);
1058 /* Cannot call generic_make_request directly
1059 * as that will be queued in __generic_make_request
1060 * and subsequent mempool_alloc might block
1061 * waiting for it. so hand bio over to raid10d.
1062 */
1063 reschedule_retry(r10_bio);
1064
1065 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1066
1067 r10_bio->master_bio = bio;
1068 r10_bio->sectors = ((bio->bi_size >> 9)
1069 - sectors_handled);
1070 r10_bio->state = 0;
1071 r10_bio->mddev = mddev;
1072 r10_bio->sector = bio->bi_sector + sectors_handled;
1073 goto read_again;
1074 } else
1075 generic_make_request(read_bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001076 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
1078
1079 /*
1080 * WRITE:
1081 */
NeilBrown34db0cd2011-10-11 16:50:01 +11001082 if (conf->pending_count >= max_queued_requests) {
1083 md_wakeup_thread(mddev->thread);
1084 wait_event(conf->wait_barrier,
1085 conf->pending_count < max_queued_requests);
1086 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07001087 /* first select target devices under rcu_lock and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 * inc refcount on their rdev. Record them by setting
1089 * bios[x] to bio
NeilBrownd4432c22011-07-28 11:39:24 +10001090 * If there are known/acknowledged bad blocks on any device
1091 * on which we have seen a write error, we want to avoid
1092 * writing to those blocks. This potentially requires several
1093 * writes to write around the bad blocks. Each set of writes
1094 * gets its own r10_bio with a set of bios attached. The number
1095 * of r10_bios is recored in bio->bi_phys_segments just as with
1096 * the read case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 */
NeilBrownc3b328a2011-04-18 18:25:43 +10001098 plugged = mddev_check_plugged(mddev);
1099
NeilBrown69335ef2011-12-23 10:17:54 +11001100 r10_bio->read_slot = -1; /* make sure repl_bio gets freed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 raid10_find_phys(conf, r10_bio);
NeilBrownd4432c22011-07-28 11:39:24 +10001102retry_write:
Harvey Harrisoncb6969e2008-05-06 20:42:32 -07001103 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 rcu_read_lock();
NeilBrownd4432c22011-07-28 11:39:24 +10001105 max_sectors = r10_bio->sectors;
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 for (i = 0; i < conf->copies; i++) {
1108 int d = r10_bio->devs[i].devnum;
NeilBrown3cb03002011-10-11 16:45:26 +11001109 struct md_rdev *rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown475b0322011-12-23 10:17:55 +11001110 struct md_rdev *rrdev = rcu_dereference(
1111 conf->mirrors[d].replacement);
NeilBrown4ca40c22011-12-23 10:17:55 +11001112 if (rdev == rrdev)
1113 rrdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07001114 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
1115 atomic_inc(&rdev->nr_pending);
1116 blocked_rdev = rdev;
1117 break;
1118 }
NeilBrown475b0322011-12-23 10:17:55 +11001119 if (rrdev && unlikely(test_bit(Blocked, &rrdev->flags))) {
1120 atomic_inc(&rrdev->nr_pending);
1121 blocked_rdev = rrdev;
1122 break;
1123 }
1124 if (rrdev && test_bit(Faulty, &rrdev->flags))
1125 rrdev = NULL;
1126
NeilBrownd4432c22011-07-28 11:39:24 +10001127 r10_bio->devs[i].bio = NULL;
NeilBrown475b0322011-12-23 10:17:55 +11001128 r10_bio->devs[i].repl_bio = NULL;
NeilBrownd4432c22011-07-28 11:39:24 +10001129 if (!rdev || test_bit(Faulty, &rdev->flags)) {
NeilBrown6cce3b22006-01-06 00:20:16 -08001130 set_bit(R10BIO_Degraded, &r10_bio->state);
NeilBrownd4432c22011-07-28 11:39:24 +10001131 continue;
NeilBrown6cce3b22006-01-06 00:20:16 -08001132 }
NeilBrownd4432c22011-07-28 11:39:24 +10001133 if (test_bit(WriteErrorSeen, &rdev->flags)) {
1134 sector_t first_bad;
1135 sector_t dev_sector = r10_bio->devs[i].addr;
1136 int bad_sectors;
1137 int is_bad;
1138
1139 is_bad = is_badblock(rdev, dev_sector,
1140 max_sectors,
1141 &first_bad, &bad_sectors);
1142 if (is_bad < 0) {
1143 /* Mustn't write here until the bad block
1144 * is acknowledged
1145 */
1146 atomic_inc(&rdev->nr_pending);
1147 set_bit(BlockedBadBlocks, &rdev->flags);
1148 blocked_rdev = rdev;
1149 break;
1150 }
1151 if (is_bad && first_bad <= dev_sector) {
1152 /* Cannot write here at all */
1153 bad_sectors -= (dev_sector - first_bad);
1154 if (bad_sectors < max_sectors)
1155 /* Mustn't write more than bad_sectors
1156 * to other devices yet
1157 */
1158 max_sectors = bad_sectors;
1159 /* We don't set R10BIO_Degraded as that
1160 * only applies if the disk is missing,
1161 * so it might be re-added, and we want to
1162 * know to recover this chunk.
1163 * In this case the device is here, and the
1164 * fact that this chunk is not in-sync is
1165 * recorded in the bad block log.
1166 */
1167 continue;
1168 }
1169 if (is_bad) {
1170 int good_sectors = first_bad - dev_sector;
1171 if (good_sectors < max_sectors)
1172 max_sectors = good_sectors;
1173 }
1174 }
1175 r10_bio->devs[i].bio = bio;
1176 atomic_inc(&rdev->nr_pending);
NeilBrown475b0322011-12-23 10:17:55 +11001177 if (rrdev) {
1178 r10_bio->devs[i].repl_bio = bio;
1179 atomic_inc(&rrdev->nr_pending);
1180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
1182 rcu_read_unlock();
1183
Dan Williams6bfe0b42008-04-30 00:52:32 -07001184 if (unlikely(blocked_rdev)) {
1185 /* Have to wait for this device to get unblocked, then retry */
1186 int j;
1187 int d;
1188
NeilBrown475b0322011-12-23 10:17:55 +11001189 for (j = 0; j < i; j++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07001190 if (r10_bio->devs[j].bio) {
1191 d = r10_bio->devs[j].devnum;
1192 rdev_dec_pending(conf->mirrors[d].rdev, mddev);
1193 }
NeilBrown475b0322011-12-23 10:17:55 +11001194 if (r10_bio->devs[j].repl_bio) {
NeilBrown4ca40c22011-12-23 10:17:55 +11001195 struct md_rdev *rdev;
NeilBrown475b0322011-12-23 10:17:55 +11001196 d = r10_bio->devs[j].devnum;
NeilBrown4ca40c22011-12-23 10:17:55 +11001197 rdev = conf->mirrors[d].replacement;
1198 if (!rdev) {
1199 /* Race with remove_disk */
1200 smp_mb();
1201 rdev = conf->mirrors[d].rdev;
1202 }
1203 rdev_dec_pending(rdev, mddev);
NeilBrown475b0322011-12-23 10:17:55 +11001204 }
1205 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07001206 allow_barrier(conf);
1207 md_wait_for_blocked_rdev(blocked_rdev, mddev);
1208 wait_barrier(conf);
1209 goto retry_write;
1210 }
1211
NeilBrownd4432c22011-07-28 11:39:24 +10001212 if (max_sectors < r10_bio->sectors) {
1213 /* We are splitting this into multiple parts, so
1214 * we need to prepare for allocating another r10_bio.
1215 */
1216 r10_bio->sectors = max_sectors;
1217 spin_lock_irq(&conf->device_lock);
1218 if (bio->bi_phys_segments == 0)
1219 bio->bi_phys_segments = 2;
1220 else
1221 bio->bi_phys_segments++;
1222 spin_unlock_irq(&conf->device_lock);
1223 }
1224 sectors_handled = r10_bio->sector + max_sectors - bio->bi_sector;
1225
NeilBrown4e780642010-10-19 12:54:01 +11001226 atomic_set(&r10_bio->remaining, 1);
NeilBrownd4432c22011-07-28 11:39:24 +10001227 bitmap_startwrite(mddev->bitmap, r10_bio->sector, r10_bio->sectors, 0);
NeilBrown06d91a52005-06-21 17:17:12 -07001228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 for (i = 0; i < conf->copies; i++) {
1230 struct bio *mbio;
1231 int d = r10_bio->devs[i].devnum;
1232 if (!r10_bio->devs[i].bio)
1233 continue;
1234
NeilBrowna167f662010-10-26 18:31:13 +11001235 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
NeilBrownd4432c22011-07-28 11:39:24 +10001236 md_trim_bio(mbio, r10_bio->sector - bio->bi_sector,
1237 max_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 r10_bio->devs[i].bio = mbio;
1239
NeilBrownd4432c22011-07-28 11:39:24 +10001240 mbio->bi_sector = (r10_bio->devs[i].addr+
1241 conf->mirrors[d].rdev->data_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 mbio->bi_bdev = conf->mirrors[d].rdev->bdev;
1243 mbio->bi_end_io = raid10_end_write_request;
Tejun Heoe9c74692010-09-03 11:56:18 +02001244 mbio->bi_rw = WRITE | do_sync | do_fua;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 mbio->bi_private = r10_bio;
1246
1247 atomic_inc(&r10_bio->remaining);
NeilBrown4e780642010-10-19 12:54:01 +11001248 spin_lock_irqsave(&conf->device_lock, flags);
1249 bio_list_add(&conf->pending_bio_list, mbio);
NeilBrown34db0cd2011-10-11 16:50:01 +11001250 conf->pending_count++;
NeilBrown4e780642010-10-19 12:54:01 +11001251 spin_unlock_irqrestore(&conf->device_lock, flags);
NeilBrown475b0322011-12-23 10:17:55 +11001252
1253 if (!r10_bio->devs[i].repl_bio)
1254 continue;
1255
1256 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
1257 md_trim_bio(mbio, r10_bio->sector - bio->bi_sector,
1258 max_sectors);
1259 r10_bio->devs[i].repl_bio = mbio;
1260
NeilBrown4ca40c22011-12-23 10:17:55 +11001261 /* We are actively writing to the original device
1262 * so it cannot disappear, so the replacement cannot
1263 * become NULL here
1264 */
NeilBrown475b0322011-12-23 10:17:55 +11001265 mbio->bi_sector = (r10_bio->devs[i].addr+
1266 conf->mirrors[d].replacement->data_offset);
1267 mbio->bi_bdev = conf->mirrors[d].replacement->bdev;
1268 mbio->bi_end_io = raid10_end_write_request;
1269 mbio->bi_rw = WRITE | do_sync | do_fua;
1270 mbio->bi_private = r10_bio;
1271
1272 atomic_inc(&r10_bio->remaining);
1273 spin_lock_irqsave(&conf->device_lock, flags);
1274 bio_list_add(&conf->pending_bio_list, mbio);
1275 conf->pending_count++;
1276 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
1278
NeilBrown079fa162011-09-10 17:21:23 +10001279 /* Don't remove the bias on 'remaining' (one_write_done) until
1280 * after checking if we need to go around again.
1281 */
NeilBrowna35e63e2008-03-04 14:29:29 -08001282
NeilBrownd4432c22011-07-28 11:39:24 +10001283 if (sectors_handled < (bio->bi_size >> 9)) {
NeilBrown079fa162011-09-10 17:21:23 +10001284 one_write_done(r10_bio);
NeilBrown5e570282011-07-28 11:39:25 +10001285 /* We need another r10_bio. It has already been counted
NeilBrownd4432c22011-07-28 11:39:24 +10001286 * in bio->bi_phys_segments.
1287 */
1288 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1289
1290 r10_bio->master_bio = bio;
1291 r10_bio->sectors = (bio->bi_size >> 9) - sectors_handled;
1292
1293 r10_bio->mddev = mddev;
1294 r10_bio->sector = bio->bi_sector + sectors_handled;
1295 r10_bio->state = 0;
1296 goto retry_write;
1297 }
NeilBrown079fa162011-09-10 17:21:23 +10001298 one_write_done(r10_bio);
1299
1300 /* In case raid10d snuck in to freeze_array */
1301 wake_up(&conf->wait_barrier);
NeilBrownd4432c22011-07-28 11:39:24 +10001302
NeilBrownc3b328a2011-04-18 18:25:43 +10001303 if (do_sync || !mddev->bitmap || !plugged)
Lars Ellenberge3881a62007-01-10 23:15:37 -08001304 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305}
1306
NeilBrownfd01b882011-10-11 16:47:53 +11001307static void status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
NeilBrowne879a872011-10-11 16:49:02 +11001309 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 int i;
1311
1312 if (conf->near_copies < conf->raid_disks)
Andre Noll9d8f0362009-06-18 08:45:01 +10001313 seq_printf(seq, " %dK chunks", mddev->chunk_sectors / 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 if (conf->near_copies > 1)
1315 seq_printf(seq, " %d near-copies", conf->near_copies);
NeilBrownc93983b2006-06-26 00:27:41 -07001316 if (conf->far_copies > 1) {
1317 if (conf->far_offset)
1318 seq_printf(seq, " %d offset-copies", conf->far_copies);
1319 else
1320 seq_printf(seq, " %d far-copies", conf->far_copies);
1321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 seq_printf(seq, " [%d/%d] [", conf->raid_disks,
NeilBrown76186dd2006-10-03 01:15:48 -07001323 conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 for (i = 0; i < conf->raid_disks; i++)
1325 seq_printf(seq, "%s",
1326 conf->mirrors[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08001327 test_bit(In_sync, &conf->mirrors[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 seq_printf(seq, "]");
1329}
1330
NeilBrown700c7212011-07-27 11:00:36 +10001331/* check if there are enough drives for
1332 * every block to appear on atleast one.
1333 * Don't consider the device numbered 'ignore'
1334 * as we might be about to remove it.
1335 */
NeilBrowne879a872011-10-11 16:49:02 +11001336static int enough(struct r10conf *conf, int ignore)
NeilBrown700c7212011-07-27 11:00:36 +10001337{
1338 int first = 0;
1339
1340 do {
1341 int n = conf->copies;
1342 int cnt = 0;
1343 while (n--) {
1344 if (conf->mirrors[first].rdev &&
1345 first != ignore)
1346 cnt++;
1347 first = (first+1) % conf->raid_disks;
1348 }
1349 if (cnt == 0)
1350 return 0;
1351 } while (first != 0);
1352 return 1;
1353}
1354
NeilBrownfd01b882011-10-11 16:47:53 +11001355static void error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
1357 char b[BDEVNAME_SIZE];
NeilBrowne879a872011-10-11 16:49:02 +11001358 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 /*
1361 * If it is not operational, then we have already marked it as dead
1362 * else if it is the last working disks, ignore the error, let the
1363 * next level up know.
1364 * else mark the drive as failed
1365 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001366 if (test_bit(In_sync, &rdev->flags)
NeilBrown700c7212011-07-27 11:00:36 +10001367 && !enough(conf, rdev->raid_disk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 /*
1369 * Don't fail the drive, just return an IO error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 */
1371 return;
NeilBrownc04be0a2006-10-03 01:15:53 -07001372 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1373 unsigned long flags;
1374 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001376 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 /*
1378 * if recovery is running, make sure it aborts.
1379 */
NeilBrowndfc70642008-05-23 13:04:39 -07001380 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
NeilBrownde393cd2011-07-28 11:31:48 +10001382 set_bit(Blocked, &rdev->flags);
NeilBrownb2d444d2005-11-08 21:39:31 -08001383 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -07001384 set_bit(MD_CHANGE_DEVS, &mddev->flags);
Joe Perches067032b2011-01-14 09:14:33 +11001385 printk(KERN_ALERT
1386 "md/raid10:%s: Disk failure on %s, disabling device.\n"
1387 "md/raid10:%s: Operation continuing on %d devices.\n",
NeilBrown128595e2010-05-03 14:47:14 +10001388 mdname(mddev), bdevname(rdev->bdev, b),
1389 mdname(mddev), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
NeilBrowne879a872011-10-11 16:49:02 +11001392static void print_conf(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
1394 int i;
NeilBrown0f6d02d2011-10-11 16:48:46 +11001395 struct mirror_info *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
NeilBrown128595e2010-05-03 14:47:14 +10001397 printk(KERN_DEBUG "RAID10 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (!conf) {
NeilBrown128595e2010-05-03 14:47:14 +10001399 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 return;
1401 }
NeilBrown128595e2010-05-03 14:47:14 +10001402 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 conf->raid_disks);
1404
1405 for (i = 0; i < conf->raid_disks; i++) {
1406 char b[BDEVNAME_SIZE];
1407 tmp = conf->mirrors + i;
1408 if (tmp->rdev)
NeilBrown128595e2010-05-03 14:47:14 +10001409 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownb2d444d2005-11-08 21:39:31 -08001410 i, !test_bit(In_sync, &tmp->rdev->flags),
1411 !test_bit(Faulty, &tmp->rdev->flags),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 bdevname(tmp->rdev->bdev,b));
1413 }
1414}
1415
NeilBrowne879a872011-10-11 16:49:02 +11001416static void close_sync(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
NeilBrown0a27ec92006-01-06 00:20:13 -08001418 wait_barrier(conf);
1419 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 mempool_destroy(conf->r10buf_pool);
1422 conf->r10buf_pool = NULL;
1423}
1424
NeilBrownfd01b882011-10-11 16:47:53 +11001425static int raid10_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
1427 int i;
NeilBrowne879a872011-10-11 16:49:02 +11001428 struct r10conf *conf = mddev->private;
NeilBrown0f6d02d2011-10-11 16:48:46 +11001429 struct mirror_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10001430 int count = 0;
1431 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 /*
1434 * Find all non-in_sync disks within the RAID10 configuration
1435 * and mark them in_sync
1436 */
1437 for (i = 0; i < conf->raid_disks; i++) {
1438 tmp = conf->mirrors + i;
NeilBrown4ca40c22011-12-23 10:17:55 +11001439 if (tmp->replacement
1440 && tmp->replacement->recovery_offset == MaxSector
1441 && !test_bit(Faulty, &tmp->replacement->flags)
1442 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
1443 /* Replacement has just become active */
1444 if (!tmp->rdev
1445 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
1446 count++;
1447 if (tmp->rdev) {
1448 /* Replaced device not technically faulty,
1449 * but we need to be sure it gets removed
1450 * and never re-added.
1451 */
1452 set_bit(Faulty, &tmp->rdev->flags);
1453 sysfs_notify_dirent_safe(
1454 tmp->rdev->sysfs_state);
1455 }
1456 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
1457 } else if (tmp->rdev
1458 && !test_bit(Faulty, &tmp->rdev->flags)
1459 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10001460 count++;
Adrian Drzewieckie6ffbcb2010-08-18 11:49:02 +10001461 sysfs_notify_dirent(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
1463 }
NeilBrown6b965622010-08-18 11:56:59 +10001464 spin_lock_irqsave(&conf->device_lock, flags);
1465 mddev->degraded -= count;
1466 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
1468 print_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10001469 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
1472
NeilBrownfd01b882011-10-11 16:47:53 +11001473static int raid10_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
NeilBrowne879a872011-10-11 16:49:02 +11001475 struct r10conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001476 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 int mirror;
Neil Brown6c2fce22008-06-28 08:31:31 +10001478 int first = 0;
NeilBrown84707f32010-03-16 17:23:35 +11001479 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 if (mddev->recovery_cp < MaxSector)
1482 /* only hot-add to in-sync arrays, as recovery is
1483 * very different from resync
1484 */
Neil Brown199050e2008-06-28 08:31:33 +10001485 return -EBUSY;
NeilBrowndc10c642012-03-19 12:46:37 +11001486 if (rdev->saved_raid_disk < 0 && !enough(conf, -1))
Neil Brown199050e2008-06-28 08:31:33 +10001487 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
NeilBrowna53a6c82008-11-06 17:28:20 +11001489 if (rdev->raid_disk >= 0)
Neil Brown6c2fce22008-06-28 08:31:31 +10001490 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Namhyung Kim2c4193d2011-07-18 17:38:43 +10001492 if (rdev->saved_raid_disk >= first &&
NeilBrown6cce3b22006-01-06 00:20:16 -08001493 conf->mirrors[rdev->saved_raid_disk].rdev == NULL)
1494 mirror = rdev->saved_raid_disk;
1495 else
Neil Brown6c2fce22008-06-28 08:31:31 +10001496 mirror = first;
NeilBrown2bb77732011-07-27 11:00:36 +10001497 for ( ; mirror <= last ; mirror++) {
NeilBrown0f6d02d2011-10-11 16:48:46 +11001498 struct mirror_info *p = &conf->mirrors[mirror];
NeilBrown2bb77732011-07-27 11:00:36 +10001499 if (p->recovery_disabled == mddev->recovery_disabled)
1500 continue;
NeilBrownb7044d42011-12-23 10:17:56 +11001501 if (p->rdev) {
1502 if (!test_bit(WantReplacement, &p->rdev->flags) ||
1503 p->replacement != NULL)
1504 continue;
1505 clear_bit(In_sync, &rdev->flags);
1506 set_bit(Replacement, &rdev->flags);
1507 rdev->raid_disk = mirror;
1508 err = 0;
1509 disk_stack_limits(mddev->gendisk, rdev->bdev,
1510 rdev->data_offset << 9);
1511 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1512 blk_queue_max_segments(mddev->queue, 1);
1513 blk_queue_segment_boundary(mddev->queue,
1514 PAGE_CACHE_SIZE - 1);
1515 }
1516 conf->fullsync = 1;
1517 rcu_assign_pointer(p->replacement, rdev);
1518 break;
1519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
NeilBrown2bb77732011-07-27 11:00:36 +10001521 disk_stack_limits(mddev->gendisk, rdev->bdev,
1522 rdev->data_offset << 9);
1523 /* as we don't honour merge_bvec_fn, we must
1524 * never risk violating it, so limit
1525 * ->max_segments to one lying with a single
1526 * page, as a one page request is never in
1527 * violation.
1528 */
1529 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1530 blk_queue_max_segments(mddev->queue, 1);
1531 blk_queue_segment_boundary(mddev->queue,
1532 PAGE_CACHE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
1534
NeilBrown2bb77732011-07-27 11:00:36 +10001535 p->head_position = 0;
NeilBrownd890fa22011-10-26 11:54:39 +11001536 p->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown2bb77732011-07-27 11:00:36 +10001537 rdev->raid_disk = mirror;
1538 err = 0;
1539 if (rdev->saved_raid_disk != mirror)
1540 conf->fullsync = 1;
1541 rcu_assign_pointer(p->rdev, rdev);
1542 break;
1543 }
1544
Andre Nollac5e7112009-08-03 10:59:47 +10001545 md_integrity_add_rdev(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001547 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
NeilBrownb8321b62011-12-23 10:17:51 +11001550static int raid10_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
NeilBrowne879a872011-10-11 16:49:02 +11001552 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11001554 int number = rdev->raid_disk;
NeilBrownc8ab9032011-12-23 10:17:54 +11001555 struct md_rdev **rdevp;
1556 struct mirror_info *p = conf->mirrors + number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 print_conf(conf);
NeilBrownc8ab9032011-12-23 10:17:54 +11001559 if (rdev == p->rdev)
1560 rdevp = &p->rdev;
1561 else if (rdev == p->replacement)
1562 rdevp = &p->replacement;
1563 else
1564 return 0;
1565
1566 if (test_bit(In_sync, &rdev->flags) ||
1567 atomic_read(&rdev->nr_pending)) {
1568 err = -EBUSY;
1569 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
NeilBrownc8ab9032011-12-23 10:17:54 +11001571 /* Only remove faulty devices if recovery
1572 * is not possible.
1573 */
1574 if (!test_bit(Faulty, &rdev->flags) &&
1575 mddev->recovery_disabled != p->recovery_disabled &&
NeilBrown4ca40c22011-12-23 10:17:55 +11001576 (!p->replacement || p->replacement == rdev) &&
NeilBrownc8ab9032011-12-23 10:17:54 +11001577 enough(conf, -1)) {
1578 err = -EBUSY;
1579 goto abort;
1580 }
1581 *rdevp = NULL;
1582 synchronize_rcu();
1583 if (atomic_read(&rdev->nr_pending)) {
1584 /* lost the race, try later */
1585 err = -EBUSY;
1586 *rdevp = rdev;
1587 goto abort;
NeilBrown4ca40c22011-12-23 10:17:55 +11001588 } else if (p->replacement) {
1589 /* We must have just cleared 'rdev' */
1590 p->rdev = p->replacement;
1591 clear_bit(Replacement, &p->replacement->flags);
1592 smp_mb(); /* Make sure other CPUs may see both as identical
1593 * but will never see neither -- if they are careful.
1594 */
1595 p->replacement = NULL;
1596 clear_bit(WantReplacement, &rdev->flags);
1597 } else
1598 /* We might have just remove the Replacement as faulty
1599 * Clear the flag just in case
1600 */
1601 clear_bit(WantReplacement, &rdev->flags);
1602
NeilBrownc8ab9032011-12-23 10:17:54 +11001603 err = md_integrity_register(mddev);
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605abort:
1606
1607 print_conf(conf);
1608 return err;
1609}
1610
1611
NeilBrown6712ecf2007-09-27 12:47:43 +02001612static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613{
NeilBrown9f2c9d12011-10-11 16:48:43 +11001614 struct r10bio *r10_bio = bio->bi_private;
NeilBrowne879a872011-10-11 16:49:02 +11001615 struct r10conf *conf = r10_bio->mddev->private;
Namhyung Kim778ca012011-07-18 17:38:47 +10001616 int d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
NeilBrown69335ef2011-12-23 10:17:54 +11001618 d = find_bio_disk(conf, r10_bio, bio, NULL, NULL);
NeilBrown0eb3ff12006-01-06 00:20:29 -08001619
1620 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
1621 set_bit(R10BIO_Uptodate, &r10_bio->state);
NeilBrowne684e412011-07-28 11:39:25 +10001622 else
1623 /* The write handler will notice the lack of
1624 * R10BIO_Uptodate and record any errors etc
1625 */
NeilBrown4dbcdc72006-01-06 00:20:52 -08001626 atomic_add(r10_bio->sectors,
1627 &conf->mirrors[d].rdev->corrected_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
1629 /* for reconstruct, we always reschedule after a read.
1630 * for resync, only after all reads
1631 */
NeilBrown73d5c382009-02-25 13:18:47 +11001632 rdev_dec_pending(conf->mirrors[d].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 if (test_bit(R10BIO_IsRecover, &r10_bio->state) ||
1634 atomic_dec_and_test(&r10_bio->remaining)) {
1635 /* we have read all the blocks,
1636 * do the comparison in process context in raid10d
1637 */
1638 reschedule_retry(r10_bio);
1639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
1641
NeilBrown9f2c9d12011-10-11 16:48:43 +11001642static void end_sync_request(struct r10bio *r10_bio)
NeilBrown5e570282011-07-28 11:39:25 +10001643{
NeilBrownfd01b882011-10-11 16:47:53 +11001644 struct mddev *mddev = r10_bio->mddev;
NeilBrown5e570282011-07-28 11:39:25 +10001645
1646 while (atomic_dec_and_test(&r10_bio->remaining)) {
1647 if (r10_bio->master_bio == NULL) {
1648 /* the primary of several recovery bios */
1649 sector_t s = r10_bio->sectors;
1650 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
1651 test_bit(R10BIO_WriteError, &r10_bio->state))
1652 reschedule_retry(r10_bio);
1653 else
1654 put_buf(r10_bio);
1655 md_done_sync(mddev, s, 1);
1656 break;
1657 } else {
NeilBrown9f2c9d12011-10-11 16:48:43 +11001658 struct r10bio *r10_bio2 = (struct r10bio *)r10_bio->master_bio;
NeilBrown5e570282011-07-28 11:39:25 +10001659 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
1660 test_bit(R10BIO_WriteError, &r10_bio->state))
1661 reschedule_retry(r10_bio);
1662 else
1663 put_buf(r10_bio);
1664 r10_bio = r10_bio2;
1665 }
1666 }
1667}
1668
NeilBrown6712ecf2007-09-27 12:47:43 +02001669static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
1671 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9f2c9d12011-10-11 16:48:43 +11001672 struct r10bio *r10_bio = bio->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11001673 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11001674 struct r10conf *conf = mddev->private;
Namhyung Kim778ca012011-07-18 17:38:47 +10001675 int d;
NeilBrown749c55e2011-07-28 11:39:24 +10001676 sector_t first_bad;
1677 int bad_sectors;
1678 int slot;
NeilBrown9ad1aef2011-12-23 10:17:55 +11001679 int repl;
NeilBrown4ca40c22011-12-23 10:17:55 +11001680 struct md_rdev *rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
NeilBrown9ad1aef2011-12-23 10:17:55 +11001682 d = find_bio_disk(conf, r10_bio, bio, &slot, &repl);
1683 if (repl)
1684 rdev = conf->mirrors[d].replacement;
NeilBrown547414d2012-03-13 11:21:20 +11001685 else
NeilBrown9ad1aef2011-12-23 10:17:55 +11001686 rdev = conf->mirrors[d].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
NeilBrown1a0b7cd2011-07-28 11:39:25 +10001688 if (!uptodate) {
NeilBrown9ad1aef2011-12-23 10:17:55 +11001689 if (repl)
1690 md_error(mddev, rdev);
1691 else {
1692 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11001693 if (!test_and_set_bit(WantReplacement, &rdev->flags))
1694 set_bit(MD_RECOVERY_NEEDED,
1695 &rdev->mddev->recovery);
NeilBrown9ad1aef2011-12-23 10:17:55 +11001696 set_bit(R10BIO_WriteError, &r10_bio->state);
1697 }
1698 } else if (is_badblock(rdev,
NeilBrown749c55e2011-07-28 11:39:24 +10001699 r10_bio->devs[slot].addr,
1700 r10_bio->sectors,
1701 &first_bad, &bad_sectors))
1702 set_bit(R10BIO_MadeGood, &r10_bio->state);
NeilBrowndfc70642008-05-23 13:04:39 -07001703
NeilBrown9ad1aef2011-12-23 10:17:55 +11001704 rdev_dec_pending(rdev, mddev);
NeilBrown5e570282011-07-28 11:39:25 +10001705
1706 end_sync_request(r10_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
1709/*
1710 * Note: sync and recover and handled very differently for raid10
1711 * This code is for resync.
1712 * For resync, we read through virtual addresses and read all blocks.
1713 * If there is any error, we schedule a write. The lowest numbered
1714 * drive is authoritative.
1715 * However requests come for physical address, so we need to map.
1716 * For every physical address there are raid_disks/copies virtual addresses,
1717 * which is always are least one, but is not necessarly an integer.
1718 * This means that a physical address can span multiple chunks, so we may
1719 * have to submit multiple io requests for a single sync request.
1720 */
1721/*
1722 * We check if all blocks are in-sync and only write to blocks that
1723 * aren't in sync
1724 */
NeilBrown9f2c9d12011-10-11 16:48:43 +11001725static void sync_request_write(struct mddev *mddev, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
NeilBrowne879a872011-10-11 16:49:02 +11001727 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 int i, first;
1729 struct bio *tbio, *fbio;
1730
1731 atomic_set(&r10_bio->remaining, 1);
1732
1733 /* find the first device with a block */
1734 for (i=0; i<conf->copies; i++)
1735 if (test_bit(BIO_UPTODATE, &r10_bio->devs[i].bio->bi_flags))
1736 break;
1737
1738 if (i == conf->copies)
1739 goto done;
1740
1741 first = i;
1742 fbio = r10_bio->devs[i].bio;
1743
1744 /* now find blocks with errors */
NeilBrown0eb3ff12006-01-06 00:20:29 -08001745 for (i=0 ; i < conf->copies ; i++) {
1746 int j, d;
1747 int vcnt = r10_bio->sectors >> (PAGE_SHIFT-9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 tbio = r10_bio->devs[i].bio;
NeilBrown0eb3ff12006-01-06 00:20:29 -08001750
1751 if (tbio->bi_end_io != end_sync_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 continue;
NeilBrown0eb3ff12006-01-06 00:20:29 -08001753 if (i == first)
1754 continue;
1755 if (test_bit(BIO_UPTODATE, &r10_bio->devs[i].bio->bi_flags)) {
1756 /* We know that the bi_io_vec layout is the same for
1757 * both 'first' and 'i', so we just compare them.
1758 * All vec entries are PAGE_SIZE;
1759 */
1760 for (j = 0; j < vcnt; j++)
1761 if (memcmp(page_address(fbio->bi_io_vec[j].bv_page),
1762 page_address(tbio->bi_io_vec[j].bv_page),
1763 PAGE_SIZE))
1764 break;
1765 if (j == vcnt)
1766 continue;
1767 mddev->resync_mismatches += r10_bio->sectors;
NeilBrownf84ee362011-07-28 11:39:25 +10001768 if (test_bit(MD_RECOVERY_CHECK, &mddev->recovery))
1769 /* Don't fix anything. */
1770 continue;
NeilBrown0eb3ff12006-01-06 00:20:29 -08001771 }
NeilBrownf84ee362011-07-28 11:39:25 +10001772 /* Ok, we need to write this bio, either to correct an
1773 * inconsistency or to correct an unreadable block.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 * First we need to fixup bv_offset, bv_len and
1775 * bi_vecs, as the read request might have corrupted these
1776 */
1777 tbio->bi_vcnt = vcnt;
1778 tbio->bi_size = r10_bio->sectors << 9;
1779 tbio->bi_idx = 0;
1780 tbio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 tbio->bi_flags &= ~(BIO_POOL_MASK - 1);
1782 tbio->bi_flags |= 1 << BIO_UPTODATE;
1783 tbio->bi_next = NULL;
1784 tbio->bi_rw = WRITE;
1785 tbio->bi_private = r10_bio;
1786 tbio->bi_sector = r10_bio->devs[i].addr;
1787
1788 for (j=0; j < vcnt ; j++) {
1789 tbio->bi_io_vec[j].bv_offset = 0;
1790 tbio->bi_io_vec[j].bv_len = PAGE_SIZE;
1791
1792 memcpy(page_address(tbio->bi_io_vec[j].bv_page),
1793 page_address(fbio->bi_io_vec[j].bv_page),
1794 PAGE_SIZE);
1795 }
1796 tbio->bi_end_io = end_sync_write;
1797
1798 d = r10_bio->devs[i].devnum;
1799 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
1800 atomic_inc(&r10_bio->remaining);
1801 md_sync_acct(conf->mirrors[d].rdev->bdev, tbio->bi_size >> 9);
1802
1803 tbio->bi_sector += conf->mirrors[d].rdev->data_offset;
1804 tbio->bi_bdev = conf->mirrors[d].rdev->bdev;
1805 generic_make_request(tbio);
1806 }
1807
NeilBrown9ad1aef2011-12-23 10:17:55 +11001808 /* Now write out to any replacement devices
1809 * that are active
1810 */
1811 for (i = 0; i < conf->copies; i++) {
1812 int j, d;
1813 int vcnt = r10_bio->sectors >> (PAGE_SHIFT-9);
1814
1815 tbio = r10_bio->devs[i].repl_bio;
1816 if (!tbio || !tbio->bi_end_io)
1817 continue;
1818 if (r10_bio->devs[i].bio->bi_end_io != end_sync_write
1819 && r10_bio->devs[i].bio != fbio)
1820 for (j = 0; j < vcnt; j++)
1821 memcpy(page_address(tbio->bi_io_vec[j].bv_page),
1822 page_address(fbio->bi_io_vec[j].bv_page),
1823 PAGE_SIZE);
1824 d = r10_bio->devs[i].devnum;
1825 atomic_inc(&r10_bio->remaining);
1826 md_sync_acct(conf->mirrors[d].replacement->bdev,
1827 tbio->bi_size >> 9);
1828 generic_make_request(tbio);
1829 }
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831done:
1832 if (atomic_dec_and_test(&r10_bio->remaining)) {
1833 md_done_sync(mddev, r10_bio->sectors, 1);
1834 put_buf(r10_bio);
1835 }
1836}
1837
1838/*
1839 * Now for the recovery code.
1840 * Recovery happens across physical sectors.
1841 * We recover all non-is_sync drives by finding the virtual address of
1842 * each, and then choose a working drive that also has that virt address.
1843 * There is a separate r10_bio for each non-in_sync drive.
1844 * Only the first two slots are in use. The first for reading,
1845 * The second for writing.
1846 *
1847 */
NeilBrown9f2c9d12011-10-11 16:48:43 +11001848static void fix_recovery_read_error(struct r10bio *r10_bio)
NeilBrown5e570282011-07-28 11:39:25 +10001849{
1850 /* We got a read error during recovery.
1851 * We repeat the read in smaller page-sized sections.
1852 * If a read succeeds, write it to the new device or record
1853 * a bad block if we cannot.
1854 * If a read fails, record a bad block on both old and
1855 * new devices.
1856 */
NeilBrownfd01b882011-10-11 16:47:53 +11001857 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11001858 struct r10conf *conf = mddev->private;
NeilBrown5e570282011-07-28 11:39:25 +10001859 struct bio *bio = r10_bio->devs[0].bio;
1860 sector_t sect = 0;
1861 int sectors = r10_bio->sectors;
1862 int idx = 0;
1863 int dr = r10_bio->devs[0].devnum;
1864 int dw = r10_bio->devs[1].devnum;
1865
1866 while (sectors) {
1867 int s = sectors;
NeilBrown3cb03002011-10-11 16:45:26 +11001868 struct md_rdev *rdev;
NeilBrown5e570282011-07-28 11:39:25 +10001869 sector_t addr;
1870 int ok;
1871
1872 if (s > (PAGE_SIZE>>9))
1873 s = PAGE_SIZE >> 9;
1874
1875 rdev = conf->mirrors[dr].rdev;
1876 addr = r10_bio->devs[0].addr + sect,
1877 ok = sync_page_io(rdev,
1878 addr,
1879 s << 9,
1880 bio->bi_io_vec[idx].bv_page,
1881 READ, false);
1882 if (ok) {
1883 rdev = conf->mirrors[dw].rdev;
1884 addr = r10_bio->devs[1].addr + sect;
1885 ok = sync_page_io(rdev,
1886 addr,
1887 s << 9,
1888 bio->bi_io_vec[idx].bv_page,
1889 WRITE, false);
NeilBrownb7044d42011-12-23 10:17:56 +11001890 if (!ok) {
NeilBrown5e570282011-07-28 11:39:25 +10001891 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11001892 if (!test_and_set_bit(WantReplacement,
1893 &rdev->flags))
1894 set_bit(MD_RECOVERY_NEEDED,
1895 &rdev->mddev->recovery);
1896 }
NeilBrown5e570282011-07-28 11:39:25 +10001897 }
1898 if (!ok) {
1899 /* We don't worry if we cannot set a bad block -
1900 * it really is bad so there is no loss in not
1901 * recording it yet
1902 */
1903 rdev_set_badblocks(rdev, addr, s, 0);
1904
1905 if (rdev != conf->mirrors[dw].rdev) {
1906 /* need bad block on destination too */
NeilBrown3cb03002011-10-11 16:45:26 +11001907 struct md_rdev *rdev2 = conf->mirrors[dw].rdev;
NeilBrown5e570282011-07-28 11:39:25 +10001908 addr = r10_bio->devs[1].addr + sect;
1909 ok = rdev_set_badblocks(rdev2, addr, s, 0);
1910 if (!ok) {
1911 /* just abort the recovery */
1912 printk(KERN_NOTICE
1913 "md/raid10:%s: recovery aborted"
1914 " due to read error\n",
1915 mdname(mddev));
1916
1917 conf->mirrors[dw].recovery_disabled
1918 = mddev->recovery_disabled;
1919 set_bit(MD_RECOVERY_INTR,
1920 &mddev->recovery);
1921 break;
1922 }
1923 }
1924 }
1925
1926 sectors -= s;
1927 sect += s;
1928 idx++;
1929 }
1930}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
NeilBrown9f2c9d12011-10-11 16:48:43 +11001932static void recovery_request_write(struct mddev *mddev, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
NeilBrowne879a872011-10-11 16:49:02 +11001934 struct r10conf *conf = mddev->private;
Namhyung Kimc65060a2011-07-18 17:38:49 +10001935 int d;
NeilBrown24afd802011-12-23 10:17:55 +11001936 struct bio *wbio, *wbio2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
NeilBrown5e570282011-07-28 11:39:25 +10001938 if (!test_bit(R10BIO_Uptodate, &r10_bio->state)) {
1939 fix_recovery_read_error(r10_bio);
1940 end_sync_request(r10_bio);
1941 return;
1942 }
1943
Namhyung Kimc65060a2011-07-18 17:38:49 +10001944 /*
1945 * share the pages with the first bio
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 * and submit the write request
1947 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 d = r10_bio->devs[1].devnum;
NeilBrown24afd802011-12-23 10:17:55 +11001949 wbio = r10_bio->devs[1].bio;
1950 wbio2 = r10_bio->devs[1].repl_bio;
1951 if (wbio->bi_end_io) {
1952 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
1953 md_sync_acct(conf->mirrors[d].rdev->bdev, wbio->bi_size >> 9);
1954 generic_make_request(wbio);
1955 }
1956 if (wbio2 && wbio2->bi_end_io) {
1957 atomic_inc(&conf->mirrors[d].replacement->nr_pending);
1958 md_sync_acct(conf->mirrors[d].replacement->bdev,
1959 wbio2->bi_size >> 9);
1960 generic_make_request(wbio2);
1961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962}
1963
1964
1965/*
Robert Becker1e509152009-12-14 12:49:58 +11001966 * Used by fix_read_error() to decay the per rdev read_errors.
1967 * We halve the read error count for every hour that has elapsed
1968 * since the last recorded read error.
1969 *
1970 */
NeilBrownfd01b882011-10-11 16:47:53 +11001971static void check_decay_read_errors(struct mddev *mddev, struct md_rdev *rdev)
Robert Becker1e509152009-12-14 12:49:58 +11001972{
1973 struct timespec cur_time_mon;
1974 unsigned long hours_since_last;
1975 unsigned int read_errors = atomic_read(&rdev->read_errors);
1976
1977 ktime_get_ts(&cur_time_mon);
1978
1979 if (rdev->last_read_error.tv_sec == 0 &&
1980 rdev->last_read_error.tv_nsec == 0) {
1981 /* first time we've seen a read error */
1982 rdev->last_read_error = cur_time_mon;
1983 return;
1984 }
1985
1986 hours_since_last = (cur_time_mon.tv_sec -
1987 rdev->last_read_error.tv_sec) / 3600;
1988
1989 rdev->last_read_error = cur_time_mon;
1990
1991 /*
1992 * if hours_since_last is > the number of bits in read_errors
1993 * just set read errors to 0. We do this to avoid
1994 * overflowing the shift of read_errors by hours_since_last.
1995 */
1996 if (hours_since_last >= 8 * sizeof(read_errors))
1997 atomic_set(&rdev->read_errors, 0);
1998 else
1999 atomic_set(&rdev->read_errors, read_errors >> hours_since_last);
2000}
2001
NeilBrown3cb03002011-10-11 16:45:26 +11002002static int r10_sync_page_io(struct md_rdev *rdev, sector_t sector,
NeilBrown58c54fc2011-07-28 11:39:25 +10002003 int sectors, struct page *page, int rw)
2004{
2005 sector_t first_bad;
2006 int bad_sectors;
2007
2008 if (is_badblock(rdev, sector, sectors, &first_bad, &bad_sectors)
2009 && (rw == READ || test_bit(WriteErrorSeen, &rdev->flags)))
2010 return -1;
2011 if (sync_page_io(rdev, sector, sectors << 9, page, rw, false))
2012 /* success */
2013 return 1;
NeilBrownb7044d42011-12-23 10:17:56 +11002014 if (rw == WRITE) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002015 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11002016 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2017 set_bit(MD_RECOVERY_NEEDED,
2018 &rdev->mddev->recovery);
2019 }
NeilBrown58c54fc2011-07-28 11:39:25 +10002020 /* need to record an error - either for the block or the device */
2021 if (!rdev_set_badblocks(rdev, sector, sectors, 0))
2022 md_error(rdev->mddev, rdev);
2023 return 0;
2024}
2025
Robert Becker1e509152009-12-14 12:49:58 +11002026/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 * This is a kernel thread which:
2028 *
2029 * 1. Retries failed read operations on working mirrors.
2030 * 2. Updates the raid superblock when problems encounter.
NeilBrown6814d532006-10-03 01:15:45 -07002031 * 3. Performs writes following reads for array synchronising.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 */
2033
NeilBrowne879a872011-10-11 16:49:02 +11002034static void fix_read_error(struct r10conf *conf, struct mddev *mddev, struct r10bio *r10_bio)
NeilBrown6814d532006-10-03 01:15:45 -07002035{
2036 int sect = 0; /* Offset from r10_bio->sector */
2037 int sectors = r10_bio->sectors;
NeilBrown3cb03002011-10-11 16:45:26 +11002038 struct md_rdev*rdev;
Robert Becker1e509152009-12-14 12:49:58 +11002039 int max_read_errors = atomic_read(&mddev->max_corr_read_errors);
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002040 int d = r10_bio->devs[r10_bio->read_slot].devnum;
Robert Becker1e509152009-12-14 12:49:58 +11002041
NeilBrown7c4e06f2011-05-11 14:53:17 +10002042 /* still own a reference to this rdev, so it cannot
2043 * have been cleared recently.
2044 */
2045 rdev = conf->mirrors[d].rdev;
Robert Becker1e509152009-12-14 12:49:58 +11002046
NeilBrown7c4e06f2011-05-11 14:53:17 +10002047 if (test_bit(Faulty, &rdev->flags))
2048 /* drive has already been failed, just ignore any
2049 more fix_read_error() attempts */
2050 return;
2051
2052 check_decay_read_errors(mddev, rdev);
2053 atomic_inc(&rdev->read_errors);
2054 if (atomic_read(&rdev->read_errors) > max_read_errors) {
2055 char b[BDEVNAME_SIZE];
Robert Becker1e509152009-12-14 12:49:58 +11002056 bdevname(rdev->bdev, b);
2057
NeilBrown7c4e06f2011-05-11 14:53:17 +10002058 printk(KERN_NOTICE
2059 "md/raid10:%s: %s: Raid device exceeded "
2060 "read_error threshold [cur %d:max %d]\n",
2061 mdname(mddev), b,
2062 atomic_read(&rdev->read_errors), max_read_errors);
2063 printk(KERN_NOTICE
2064 "md/raid10:%s: %s: Failing raid device\n",
2065 mdname(mddev), b);
2066 md_error(mddev, conf->mirrors[d].rdev);
NeilBrownfae8cc52012-02-14 11:10:10 +11002067 r10_bio->devs[r10_bio->read_slot].bio = IO_BLOCKED;
NeilBrown7c4e06f2011-05-11 14:53:17 +10002068 return;
Robert Becker1e509152009-12-14 12:49:58 +11002069 }
Robert Becker1e509152009-12-14 12:49:58 +11002070
NeilBrown6814d532006-10-03 01:15:45 -07002071 while(sectors) {
2072 int s = sectors;
2073 int sl = r10_bio->read_slot;
2074 int success = 0;
2075 int start;
2076
2077 if (s > (PAGE_SIZE>>9))
2078 s = PAGE_SIZE >> 9;
2079
2080 rcu_read_lock();
2081 do {
NeilBrown8dbed5c2011-07-28 11:39:24 +10002082 sector_t first_bad;
2083 int bad_sectors;
2084
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002085 d = r10_bio->devs[sl].devnum;
NeilBrown6814d532006-10-03 01:15:45 -07002086 rdev = rcu_dereference(conf->mirrors[d].rdev);
2087 if (rdev &&
NeilBrown8dbed5c2011-07-28 11:39:24 +10002088 test_bit(In_sync, &rdev->flags) &&
2089 is_badblock(rdev, r10_bio->devs[sl].addr + sect, s,
2090 &first_bad, &bad_sectors) == 0) {
NeilBrown6814d532006-10-03 01:15:45 -07002091 atomic_inc(&rdev->nr_pending);
2092 rcu_read_unlock();
NeilBrown2b193362010-10-27 15:16:40 +11002093 success = sync_page_io(rdev,
NeilBrown6814d532006-10-03 01:15:45 -07002094 r10_bio->devs[sl].addr +
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11002095 sect,
NeilBrown6814d532006-10-03 01:15:45 -07002096 s<<9,
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11002097 conf->tmppage, READ, false);
NeilBrown6814d532006-10-03 01:15:45 -07002098 rdev_dec_pending(rdev, mddev);
2099 rcu_read_lock();
2100 if (success)
2101 break;
2102 }
2103 sl++;
2104 if (sl == conf->copies)
2105 sl = 0;
2106 } while (!success && sl != r10_bio->read_slot);
2107 rcu_read_unlock();
2108
2109 if (!success) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002110 /* Cannot read from anywhere, just mark the block
2111 * as bad on the first device to discourage future
2112 * reads.
2113 */
NeilBrown6814d532006-10-03 01:15:45 -07002114 int dn = r10_bio->devs[r10_bio->read_slot].devnum;
NeilBrown58c54fc2011-07-28 11:39:25 +10002115 rdev = conf->mirrors[dn].rdev;
2116
2117 if (!rdev_set_badblocks(
2118 rdev,
2119 r10_bio->devs[r10_bio->read_slot].addr
2120 + sect,
NeilBrownfae8cc52012-02-14 11:10:10 +11002121 s, 0)) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002122 md_error(mddev, rdev);
NeilBrownfae8cc52012-02-14 11:10:10 +11002123 r10_bio->devs[r10_bio->read_slot].bio
2124 = IO_BLOCKED;
2125 }
NeilBrown6814d532006-10-03 01:15:45 -07002126 break;
2127 }
2128
2129 start = sl;
2130 /* write it back and re-read */
2131 rcu_read_lock();
2132 while (sl != r10_bio->read_slot) {
Robert Becker67b8dc42009-12-14 12:49:57 +11002133 char b[BDEVNAME_SIZE];
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002134
NeilBrown6814d532006-10-03 01:15:45 -07002135 if (sl==0)
2136 sl = conf->copies;
2137 sl--;
2138 d = r10_bio->devs[sl].devnum;
2139 rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown1294b9c2011-07-28 11:39:23 +10002140 if (!rdev ||
2141 !test_bit(In_sync, &rdev->flags))
2142 continue;
2143
2144 atomic_inc(&rdev->nr_pending);
2145 rcu_read_unlock();
NeilBrown58c54fc2011-07-28 11:39:25 +10002146 if (r10_sync_page_io(rdev,
2147 r10_bio->devs[sl].addr +
2148 sect,
2149 s<<9, conf->tmppage, WRITE)
NeilBrown1294b9c2011-07-28 11:39:23 +10002150 == 0) {
2151 /* Well, this device is dead */
2152 printk(KERN_NOTICE
2153 "md/raid10:%s: read correction "
2154 "write failed"
2155 " (%d sectors at %llu on %s)\n",
2156 mdname(mddev), s,
2157 (unsigned long long)(
2158 sect + rdev->data_offset),
2159 bdevname(rdev->bdev, b));
2160 printk(KERN_NOTICE "md/raid10:%s: %s: failing "
2161 "drive\n",
2162 mdname(mddev),
2163 bdevname(rdev->bdev, b));
NeilBrown6814d532006-10-03 01:15:45 -07002164 }
NeilBrown1294b9c2011-07-28 11:39:23 +10002165 rdev_dec_pending(rdev, mddev);
2166 rcu_read_lock();
NeilBrown6814d532006-10-03 01:15:45 -07002167 }
2168 sl = start;
2169 while (sl != r10_bio->read_slot) {
NeilBrown1294b9c2011-07-28 11:39:23 +10002170 char b[BDEVNAME_SIZE];
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002171
NeilBrown6814d532006-10-03 01:15:45 -07002172 if (sl==0)
2173 sl = conf->copies;
2174 sl--;
2175 d = r10_bio->devs[sl].devnum;
2176 rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown1294b9c2011-07-28 11:39:23 +10002177 if (!rdev ||
2178 !test_bit(In_sync, &rdev->flags))
2179 continue;
Robert Becker67b8dc42009-12-14 12:49:57 +11002180
NeilBrown1294b9c2011-07-28 11:39:23 +10002181 atomic_inc(&rdev->nr_pending);
2182 rcu_read_unlock();
NeilBrown58c54fc2011-07-28 11:39:25 +10002183 switch (r10_sync_page_io(rdev,
2184 r10_bio->devs[sl].addr +
2185 sect,
2186 s<<9, conf->tmppage,
2187 READ)) {
2188 case 0:
NeilBrown1294b9c2011-07-28 11:39:23 +10002189 /* Well, this device is dead */
2190 printk(KERN_NOTICE
2191 "md/raid10:%s: unable to read back "
2192 "corrected sectors"
2193 " (%d sectors at %llu on %s)\n",
2194 mdname(mddev), s,
2195 (unsigned long long)(
2196 sect + rdev->data_offset),
2197 bdevname(rdev->bdev, b));
2198 printk(KERN_NOTICE "md/raid10:%s: %s: failing "
2199 "drive\n",
2200 mdname(mddev),
2201 bdevname(rdev->bdev, b));
NeilBrown58c54fc2011-07-28 11:39:25 +10002202 break;
2203 case 1:
NeilBrown1294b9c2011-07-28 11:39:23 +10002204 printk(KERN_INFO
2205 "md/raid10:%s: read error corrected"
2206 " (%d sectors at %llu on %s)\n",
2207 mdname(mddev), s,
2208 (unsigned long long)(
2209 sect + rdev->data_offset),
2210 bdevname(rdev->bdev, b));
2211 atomic_add(s, &rdev->corrected_errors);
NeilBrown6814d532006-10-03 01:15:45 -07002212 }
NeilBrown1294b9c2011-07-28 11:39:23 +10002213
2214 rdev_dec_pending(rdev, mddev);
2215 rcu_read_lock();
NeilBrown6814d532006-10-03 01:15:45 -07002216 }
2217 rcu_read_unlock();
2218
2219 sectors -= s;
2220 sect += s;
2221 }
2222}
2223
NeilBrownbd870a12011-07-28 11:39:24 +10002224static void bi_complete(struct bio *bio, int error)
2225{
2226 complete((struct completion *)bio->bi_private);
2227}
2228
2229static int submit_bio_wait(int rw, struct bio *bio)
2230{
2231 struct completion event;
2232 rw |= REQ_SYNC;
2233
2234 init_completion(&event);
2235 bio->bi_private = &event;
2236 bio->bi_end_io = bi_complete;
2237 submit_bio(rw, bio);
2238 wait_for_completion(&event);
2239
2240 return test_bit(BIO_UPTODATE, &bio->bi_flags);
2241}
2242
NeilBrown9f2c9d12011-10-11 16:48:43 +11002243static int narrow_write_error(struct r10bio *r10_bio, int i)
NeilBrownbd870a12011-07-28 11:39:24 +10002244{
2245 struct bio *bio = r10_bio->master_bio;
NeilBrownfd01b882011-10-11 16:47:53 +11002246 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11002247 struct r10conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11002248 struct md_rdev *rdev = conf->mirrors[r10_bio->devs[i].devnum].rdev;
NeilBrownbd870a12011-07-28 11:39:24 +10002249 /* bio has the data to be written to slot 'i' where
2250 * we just recently had a write error.
2251 * We repeatedly clone the bio and trim down to one block,
2252 * then try the write. Where the write fails we record
2253 * a bad block.
2254 * It is conceivable that the bio doesn't exactly align with
2255 * blocks. We must handle this.
2256 *
2257 * We currently own a reference to the rdev.
2258 */
2259
2260 int block_sectors;
2261 sector_t sector;
2262 int sectors;
2263 int sect_to_write = r10_bio->sectors;
2264 int ok = 1;
2265
2266 if (rdev->badblocks.shift < 0)
2267 return 0;
2268
2269 block_sectors = 1 << rdev->badblocks.shift;
2270 sector = r10_bio->sector;
2271 sectors = ((r10_bio->sector + block_sectors)
2272 & ~(sector_t)(block_sectors - 1))
2273 - sector;
2274
2275 while (sect_to_write) {
2276 struct bio *wbio;
2277 if (sectors > sect_to_write)
2278 sectors = sect_to_write;
2279 /* Write at 'sector' for 'sectors' */
2280 wbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
2281 md_trim_bio(wbio, sector - bio->bi_sector, sectors);
2282 wbio->bi_sector = (r10_bio->devs[i].addr+
2283 rdev->data_offset+
2284 (sector - r10_bio->sector));
2285 wbio->bi_bdev = rdev->bdev;
2286 if (submit_bio_wait(WRITE, wbio) == 0)
2287 /* Failure! */
2288 ok = rdev_set_badblocks(rdev, sector,
2289 sectors, 0)
2290 && ok;
2291
2292 bio_put(wbio);
2293 sect_to_write -= sectors;
2294 sector += sectors;
2295 sectors = block_sectors;
2296 }
2297 return ok;
2298}
2299
NeilBrown9f2c9d12011-10-11 16:48:43 +11002300static void handle_read_error(struct mddev *mddev, struct r10bio *r10_bio)
NeilBrown560f8e52011-07-28 11:39:23 +10002301{
2302 int slot = r10_bio->read_slot;
NeilBrown560f8e52011-07-28 11:39:23 +10002303 struct bio *bio;
NeilBrowne879a872011-10-11 16:49:02 +11002304 struct r10conf *conf = mddev->private;
NeilBrownabbf0982011-12-23 10:17:54 +11002305 struct md_rdev *rdev = r10_bio->devs[slot].rdev;
NeilBrown560f8e52011-07-28 11:39:23 +10002306 char b[BDEVNAME_SIZE];
2307 unsigned long do_sync;
NeilBrown856e08e2011-07-28 11:39:23 +10002308 int max_sectors;
NeilBrown560f8e52011-07-28 11:39:23 +10002309
2310 /* we got a read error. Maybe the drive is bad. Maybe just
2311 * the block and we can fix it.
2312 * We freeze all other IO, and try reading the block from
2313 * other devices. When we find one, we re-write
2314 * and check it that fixes the read error.
2315 * This is all done synchronously while the array is
2316 * frozen.
2317 */
NeilBrownfae8cc52012-02-14 11:10:10 +11002318 bio = r10_bio->devs[slot].bio;
2319 bdevname(bio->bi_bdev, b);
2320 bio_put(bio);
2321 r10_bio->devs[slot].bio = NULL;
2322
NeilBrown560f8e52011-07-28 11:39:23 +10002323 if (mddev->ro == 0) {
2324 freeze_array(conf);
2325 fix_read_error(conf, mddev, r10_bio);
2326 unfreeze_array(conf);
NeilBrownfae8cc52012-02-14 11:10:10 +11002327 } else
2328 r10_bio->devs[slot].bio = IO_BLOCKED;
2329
NeilBrownabbf0982011-12-23 10:17:54 +11002330 rdev_dec_pending(rdev, mddev);
NeilBrown560f8e52011-07-28 11:39:23 +10002331
NeilBrown7399c312011-07-28 11:39:23 +10002332read_more:
NeilBrown96c3fd12011-12-23 10:17:54 +11002333 rdev = read_balance(conf, r10_bio, &max_sectors);
2334 if (rdev == NULL) {
NeilBrown560f8e52011-07-28 11:39:23 +10002335 printk(KERN_ALERT "md/raid10:%s: %s: unrecoverable I/O"
2336 " read error for block %llu\n",
NeilBrown7399c312011-07-28 11:39:23 +10002337 mdname(mddev), b,
NeilBrown560f8e52011-07-28 11:39:23 +10002338 (unsigned long long)r10_bio->sector);
2339 raid_end_bio_io(r10_bio);
NeilBrown560f8e52011-07-28 11:39:23 +10002340 return;
2341 }
2342
2343 do_sync = (r10_bio->master_bio->bi_rw & REQ_SYNC);
NeilBrown560f8e52011-07-28 11:39:23 +10002344 slot = r10_bio->read_slot;
NeilBrown560f8e52011-07-28 11:39:23 +10002345 printk_ratelimited(
2346 KERN_ERR
2347 "md/raid10:%s: %s: redirecting"
2348 "sector %llu to another mirror\n",
2349 mdname(mddev),
2350 bdevname(rdev->bdev, b),
2351 (unsigned long long)r10_bio->sector);
2352 bio = bio_clone_mddev(r10_bio->master_bio,
2353 GFP_NOIO, mddev);
NeilBrown7399c312011-07-28 11:39:23 +10002354 md_trim_bio(bio,
2355 r10_bio->sector - bio->bi_sector,
2356 max_sectors);
NeilBrown560f8e52011-07-28 11:39:23 +10002357 r10_bio->devs[slot].bio = bio;
NeilBrownabbf0982011-12-23 10:17:54 +11002358 r10_bio->devs[slot].rdev = rdev;
NeilBrown560f8e52011-07-28 11:39:23 +10002359 bio->bi_sector = r10_bio->devs[slot].addr
2360 + rdev->data_offset;
2361 bio->bi_bdev = rdev->bdev;
2362 bio->bi_rw = READ | do_sync;
2363 bio->bi_private = r10_bio;
2364 bio->bi_end_io = raid10_end_read_request;
NeilBrown7399c312011-07-28 11:39:23 +10002365 if (max_sectors < r10_bio->sectors) {
2366 /* Drat - have to split this up more */
2367 struct bio *mbio = r10_bio->master_bio;
2368 int sectors_handled =
2369 r10_bio->sector + max_sectors
2370 - mbio->bi_sector;
2371 r10_bio->sectors = max_sectors;
2372 spin_lock_irq(&conf->device_lock);
2373 if (mbio->bi_phys_segments == 0)
2374 mbio->bi_phys_segments = 2;
2375 else
2376 mbio->bi_phys_segments++;
2377 spin_unlock_irq(&conf->device_lock);
2378 generic_make_request(bio);
NeilBrown7399c312011-07-28 11:39:23 +10002379
2380 r10_bio = mempool_alloc(conf->r10bio_pool,
2381 GFP_NOIO);
2382 r10_bio->master_bio = mbio;
2383 r10_bio->sectors = (mbio->bi_size >> 9)
2384 - sectors_handled;
2385 r10_bio->state = 0;
2386 set_bit(R10BIO_ReadError,
2387 &r10_bio->state);
2388 r10_bio->mddev = mddev;
2389 r10_bio->sector = mbio->bi_sector
2390 + sectors_handled;
2391
2392 goto read_more;
2393 } else
2394 generic_make_request(bio);
NeilBrown560f8e52011-07-28 11:39:23 +10002395}
2396
NeilBrowne879a872011-10-11 16:49:02 +11002397static void handle_write_completed(struct r10conf *conf, struct r10bio *r10_bio)
NeilBrown749c55e2011-07-28 11:39:24 +10002398{
2399 /* Some sort of write request has finished and it
2400 * succeeded in writing where we thought there was a
2401 * bad block. So forget the bad block.
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002402 * Or possibly if failed and we need to record
2403 * a bad block.
NeilBrown749c55e2011-07-28 11:39:24 +10002404 */
2405 int m;
NeilBrown3cb03002011-10-11 16:45:26 +11002406 struct md_rdev *rdev;
NeilBrown749c55e2011-07-28 11:39:24 +10002407
2408 if (test_bit(R10BIO_IsSync, &r10_bio->state) ||
2409 test_bit(R10BIO_IsRecover, &r10_bio->state)) {
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002410 for (m = 0; m < conf->copies; m++) {
2411 int dev = r10_bio->devs[m].devnum;
2412 rdev = conf->mirrors[dev].rdev;
2413 if (r10_bio->devs[m].bio == NULL)
2414 continue;
2415 if (test_bit(BIO_UPTODATE,
NeilBrown749c55e2011-07-28 11:39:24 +10002416 &r10_bio->devs[m].bio->bi_flags)) {
NeilBrown749c55e2011-07-28 11:39:24 +10002417 rdev_clear_badblocks(
2418 rdev,
2419 r10_bio->devs[m].addr,
2420 r10_bio->sectors);
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002421 } else {
2422 if (!rdev_set_badblocks(
2423 rdev,
2424 r10_bio->devs[m].addr,
2425 r10_bio->sectors, 0))
2426 md_error(conf->mddev, rdev);
NeilBrown749c55e2011-07-28 11:39:24 +10002427 }
NeilBrown9ad1aef2011-12-23 10:17:55 +11002428 rdev = conf->mirrors[dev].replacement;
2429 if (r10_bio->devs[m].repl_bio == NULL)
2430 continue;
2431 if (test_bit(BIO_UPTODATE,
2432 &r10_bio->devs[m].repl_bio->bi_flags)) {
2433 rdev_clear_badblocks(
2434 rdev,
2435 r10_bio->devs[m].addr,
2436 r10_bio->sectors);
2437 } else {
2438 if (!rdev_set_badblocks(
2439 rdev,
2440 r10_bio->devs[m].addr,
2441 r10_bio->sectors, 0))
2442 md_error(conf->mddev, rdev);
2443 }
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002444 }
NeilBrown749c55e2011-07-28 11:39:24 +10002445 put_buf(r10_bio);
2446 } else {
NeilBrownbd870a12011-07-28 11:39:24 +10002447 for (m = 0; m < conf->copies; m++) {
2448 int dev = r10_bio->devs[m].devnum;
2449 struct bio *bio = r10_bio->devs[m].bio;
2450 rdev = conf->mirrors[dev].rdev;
2451 if (bio == IO_MADE_GOOD) {
NeilBrown749c55e2011-07-28 11:39:24 +10002452 rdev_clear_badblocks(
2453 rdev,
2454 r10_bio->devs[m].addr,
2455 r10_bio->sectors);
2456 rdev_dec_pending(rdev, conf->mddev);
NeilBrownbd870a12011-07-28 11:39:24 +10002457 } else if (bio != NULL &&
2458 !test_bit(BIO_UPTODATE, &bio->bi_flags)) {
2459 if (!narrow_write_error(r10_bio, m)) {
2460 md_error(conf->mddev, rdev);
2461 set_bit(R10BIO_Degraded,
2462 &r10_bio->state);
2463 }
2464 rdev_dec_pending(rdev, conf->mddev);
NeilBrown749c55e2011-07-28 11:39:24 +10002465 }
NeilBrown475b0322011-12-23 10:17:55 +11002466 bio = r10_bio->devs[m].repl_bio;
2467 rdev = conf->mirrors[dev].replacement;
NeilBrown4ca40c22011-12-23 10:17:55 +11002468 if (rdev && bio == IO_MADE_GOOD) {
NeilBrown475b0322011-12-23 10:17:55 +11002469 rdev_clear_badblocks(
2470 rdev,
2471 r10_bio->devs[m].addr,
2472 r10_bio->sectors);
2473 rdev_dec_pending(rdev, conf->mddev);
2474 }
NeilBrownbd870a12011-07-28 11:39:24 +10002475 }
2476 if (test_bit(R10BIO_WriteError,
2477 &r10_bio->state))
2478 close_write(r10_bio);
NeilBrown749c55e2011-07-28 11:39:24 +10002479 raid_end_bio_io(r10_bio);
2480 }
2481}
2482
NeilBrownfd01b882011-10-11 16:47:53 +11002483static void raid10d(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484{
NeilBrown9f2c9d12011-10-11 16:48:43 +11002485 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 unsigned long flags;
NeilBrowne879a872011-10-11 16:49:02 +11002487 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 struct list_head *head = &conf->retry_list;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002489 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
2491 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002493 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 for (;;) {
NeilBrowna35e63e2008-03-04 14:29:29 -08002495
Jens Axboe7eaceac2011-03-10 08:52:07 +01002496 flush_pending_writes(conf);
NeilBrowna35e63e2008-03-04 14:29:29 -08002497
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08002499 if (list_empty(head)) {
NeilBrown6cce3b22006-01-06 00:20:16 -08002500 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08002502 }
NeilBrown9f2c9d12011-10-11 16:48:43 +11002503 r10_bio = list_entry(head->prev, struct r10bio, retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 list_del(head->prev);
NeilBrown4443ae12006-01-06 00:20:28 -08002505 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 spin_unlock_irqrestore(&conf->device_lock, flags);
2507
2508 mddev = r10_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10002509 conf = mddev->private;
NeilBrownbd870a12011-07-28 11:39:24 +10002510 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
2511 test_bit(R10BIO_WriteError, &r10_bio->state))
NeilBrown749c55e2011-07-28 11:39:24 +10002512 handle_write_completed(conf, r10_bio);
2513 else if (test_bit(R10BIO_IsSync, &r10_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 sync_request_write(mddev, r10_bio);
Jens Axboe7eaceac2011-03-10 08:52:07 +01002515 else if (test_bit(R10BIO_IsRecover, &r10_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 recovery_request_write(mddev, r10_bio);
NeilBrown856e08e2011-07-28 11:39:23 +10002517 else if (test_bit(R10BIO_ReadError, &r10_bio->state))
NeilBrown560f8e52011-07-28 11:39:23 +10002518 handle_read_error(mddev, r10_bio);
NeilBrown856e08e2011-07-28 11:39:23 +10002519 else {
2520 /* just a partial read to be scheduled from a
2521 * separate context
2522 */
2523 int slot = r10_bio->read_slot;
2524 generic_make_request(r10_bio->devs[slot].bio);
2525 }
NeilBrown4443ae12006-01-06 00:20:28 -08002526
NeilBrown1d9d5242009-10-16 15:55:32 +11002527 cond_resched();
NeilBrownde393cd2011-07-28 11:31:48 +10002528 if (mddev->flags & ~(1<<MD_CHANGE_PENDING))
2529 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 }
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002531 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532}
2533
2534
NeilBrowne879a872011-10-11 16:49:02 +11002535static int init_resync(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536{
2537 int buffs;
NeilBrown69335ef2011-12-23 10:17:54 +11002538 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
2540 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhennb6385482006-04-02 13:34:29 +02002541 BUG_ON(conf->r10buf_pool);
NeilBrown69335ef2011-12-23 10:17:54 +11002542 conf->have_replacement = 0;
2543 for (i = 0; i < conf->raid_disks; i++)
2544 if (conf->mirrors[i].replacement)
2545 conf->have_replacement = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 conf->r10buf_pool = mempool_create(buffs, r10buf_pool_alloc, r10buf_pool_free, conf);
2547 if (!conf->r10buf_pool)
2548 return -ENOMEM;
2549 conf->next_resync = 0;
2550 return 0;
2551}
2552
2553/*
2554 * perform a "sync" on one "block"
2555 *
2556 * We need to make sure that no normal I/O request - particularly write
2557 * requests - conflict with active sync requests.
2558 *
2559 * This is achieved by tracking pending requests and a 'barrier' concept
2560 * that can be installed to exclude normal IO requests.
2561 *
2562 * Resync and recovery are handled very differently.
2563 * We differentiate by looking at MD_RECOVERY_SYNC in mddev->recovery.
2564 *
2565 * For resync, we iterate over virtual addresses, read all copies,
2566 * and update if there are differences. If only one copy is live,
2567 * skip it.
2568 * For recovery, we iterate over physical addresses, read a good
2569 * value for each non-in_sync drive, and over-write.
2570 *
2571 * So, for recovery we may have several outstanding complex requests for a
2572 * given address, one for each out-of-sync device. We model this by allocating
2573 * a number of r10_bio structures, one for each out-of-sync device.
2574 * As we setup these structures, we collect all bio's together into a list
2575 * which we then process collectively to add pages, and then process again
2576 * to pass to generic_make_request.
2577 *
2578 * The r10_bio structures are linked using a borrowed master_bio pointer.
2579 * This link is counted in ->remaining. When the r10_bio that points to NULL
2580 * has its remaining count decremented to 0, the whole complex operation
2581 * is complete.
2582 *
2583 */
2584
NeilBrownfd01b882011-10-11 16:47:53 +11002585static sector_t sync_request(struct mddev *mddev, sector_t sector_nr,
NeilBrownab9d47e2011-05-11 14:54:41 +10002586 int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587{
NeilBrowne879a872011-10-11 16:49:02 +11002588 struct r10conf *conf = mddev->private;
NeilBrown9f2c9d12011-10-11 16:48:43 +11002589 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 struct bio *biolist = NULL, *bio;
2591 sector_t max_sector, nr_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 int i;
NeilBrown6cce3b22006-01-06 00:20:16 -08002593 int max_sync;
NeilBrown57dab0b2010-10-19 10:03:39 +11002594 sector_t sync_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 sector_t sectors_skipped = 0;
2596 int chunks_skipped = 0;
2597
2598 if (!conf->r10buf_pool)
2599 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07002600 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
2602 skipped:
Andre Noll58c0fed2009-03-31 14:33:13 +11002603 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery))
2605 max_sector = mddev->resync_max_sectors;
2606 if (sector_nr >= max_sector) {
NeilBrown6cce3b22006-01-06 00:20:16 -08002607 /* If we aborted, we need to abort the
2608 * sync on the 'current' bitmap chucks (there can
2609 * be several when recovering multiple devices).
2610 * as we may have started syncing it but not finished.
2611 * We can find the current address in
2612 * mddev->curr_resync, but for recovery,
2613 * we need to convert that to several
2614 * virtual addresses.
2615 */
2616 if (mddev->curr_resync < max_sector) { /* aborted */
2617 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery))
2618 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
2619 &sync_blocks, 1);
2620 else for (i=0; i<conf->raid_disks; i++) {
2621 sector_t sect =
2622 raid10_find_virt(conf, mddev->curr_resync, i);
2623 bitmap_end_sync(mddev->bitmap, sect,
2624 &sync_blocks, 1);
2625 }
NeilBrown9ad1aef2011-12-23 10:17:55 +11002626 } else {
2627 /* completed sync */
2628 if ((!mddev->bitmap || conf->fullsync)
2629 && conf->have_replacement
2630 && test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
2631 /* Completed a full sync so the replacements
2632 * are now fully recovered.
2633 */
2634 for (i = 0; i < conf->raid_disks; i++)
2635 if (conf->mirrors[i].replacement)
2636 conf->mirrors[i].replacement
2637 ->recovery_offset
2638 = MaxSector;
2639 }
NeilBrown6cce3b22006-01-06 00:20:16 -08002640 conf->fullsync = 0;
NeilBrown9ad1aef2011-12-23 10:17:55 +11002641 }
NeilBrown6cce3b22006-01-06 00:20:16 -08002642 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 close_sync(conf);
NeilBrown57afd892005-06-21 17:17:13 -07002644 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 return sectors_skipped;
2646 }
2647 if (chunks_skipped >= conf->raid_disks) {
2648 /* if there has been nothing to do on any drive,
2649 * then there is nothing to do at all..
2650 */
NeilBrown57afd892005-06-21 17:17:13 -07002651 *skipped = 1;
2652 return (max_sector - sector_nr) + sectors_skipped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 }
2654
NeilBrownc6207272008-02-06 01:39:52 -08002655 if (max_sector > mddev->resync_max)
2656 max_sector = mddev->resync_max; /* Don't do IO beyond here */
2657
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 /* make sure whole request will fit in a chunk - if chunks
2659 * are meaningful
2660 */
2661 if (conf->near_copies < conf->raid_disks &&
2662 max_sector > (sector_nr | conf->chunk_mask))
2663 max_sector = (sector_nr | conf->chunk_mask) + 1;
2664 /*
2665 * If there is non-resync activity waiting for us then
2666 * put in a delay to throttle resync.
2667 */
NeilBrown0a27ec92006-01-06 00:20:13 -08002668 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 msleep_interruptible(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
2671 /* Again, very different code for resync and recovery.
2672 * Both must result in an r10bio with a list of bios that
2673 * have bi_end_io, bi_sector, bi_bdev set,
2674 * and bi_private set to the r10bio.
2675 * For recovery, we may actually create several r10bios
2676 * with 2 bios in each, that correspond to the bios in the main one.
2677 * In this case, the subordinate r10bios link back through a
2678 * borrowed master_bio pointer, and the counter in the master
2679 * includes a ref from each subordinate.
2680 */
2681 /* First, we decide what to do and set ->bi_end_io
2682 * To end_sync_read if we want to read, and
2683 * end_sync_write if we will want to write.
2684 */
2685
NeilBrown6cce3b22006-01-06 00:20:16 -08002686 max_sync = RESYNC_PAGES << (PAGE_SHIFT-9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 if (!test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
2688 /* recovery... the complicated one */
NeilBrowne875ece2011-07-28 11:39:24 +10002689 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 r10_bio = NULL;
2691
NeilBrownab9d47e2011-05-11 14:54:41 +10002692 for (i=0 ; i<conf->raid_disks; i++) {
2693 int still_degraded;
NeilBrown9f2c9d12011-10-11 16:48:43 +11002694 struct r10bio *rb2;
NeilBrownab9d47e2011-05-11 14:54:41 +10002695 sector_t sect;
2696 int must_sync;
NeilBrowne875ece2011-07-28 11:39:24 +10002697 int any_working;
NeilBrown24afd802011-12-23 10:17:55 +11002698 struct mirror_info *mirror = &conf->mirrors[i];
NeilBrownab9d47e2011-05-11 14:54:41 +10002699
NeilBrown24afd802011-12-23 10:17:55 +11002700 if ((mirror->rdev == NULL ||
2701 test_bit(In_sync, &mirror->rdev->flags))
2702 &&
2703 (mirror->replacement == NULL ||
2704 test_bit(Faulty,
2705 &mirror->replacement->flags)))
NeilBrownab9d47e2011-05-11 14:54:41 +10002706 continue;
2707
2708 still_degraded = 0;
2709 /* want to reconstruct this device */
2710 rb2 = r10_bio;
2711 sect = raid10_find_virt(conf, sector_nr, i);
NeilBrown24afd802011-12-23 10:17:55 +11002712 /* Unless we are doing a full sync, or a replacement
2713 * we only need to recover the block if it is set in
2714 * the bitmap
NeilBrownab9d47e2011-05-11 14:54:41 +10002715 */
2716 must_sync = bitmap_start_sync(mddev->bitmap, sect,
2717 &sync_blocks, 1);
2718 if (sync_blocks < max_sync)
2719 max_sync = sync_blocks;
2720 if (!must_sync &&
NeilBrown24afd802011-12-23 10:17:55 +11002721 mirror->replacement == NULL &&
NeilBrownab9d47e2011-05-11 14:54:41 +10002722 !conf->fullsync) {
2723 /* yep, skip the sync_blocks here, but don't assume
2724 * that there will never be anything to do here
NeilBrown6cce3b22006-01-06 00:20:16 -08002725 */
NeilBrownab9d47e2011-05-11 14:54:41 +10002726 chunks_skipped = -1;
2727 continue;
2728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
NeilBrownab9d47e2011-05-11 14:54:41 +10002730 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
2731 raise_barrier(conf, rb2 != NULL);
2732 atomic_set(&r10_bio->remaining, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
NeilBrownab9d47e2011-05-11 14:54:41 +10002734 r10_bio->master_bio = (struct bio*)rb2;
2735 if (rb2)
2736 atomic_inc(&rb2->remaining);
2737 r10_bio->mddev = mddev;
2738 set_bit(R10BIO_IsRecover, &r10_bio->state);
2739 r10_bio->sector = sect;
NeilBrown6cce3b22006-01-06 00:20:16 -08002740
NeilBrownab9d47e2011-05-11 14:54:41 +10002741 raid10_find_phys(conf, r10_bio);
NeilBrown18055562009-05-07 12:48:10 +10002742
NeilBrownab9d47e2011-05-11 14:54:41 +10002743 /* Need to check if the array will still be
2744 * degraded
2745 */
2746 for (j=0; j<conf->raid_disks; j++)
2747 if (conf->mirrors[j].rdev == NULL ||
2748 test_bit(Faulty, &conf->mirrors[j].rdev->flags)) {
2749 still_degraded = 1;
NeilBrown87fc7672005-09-09 16:24:04 -07002750 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 }
NeilBrownab9d47e2011-05-11 14:54:41 +10002752
2753 must_sync = bitmap_start_sync(mddev->bitmap, sect,
2754 &sync_blocks, still_degraded);
2755
NeilBrowne875ece2011-07-28 11:39:24 +10002756 any_working = 0;
NeilBrownab9d47e2011-05-11 14:54:41 +10002757 for (j=0; j<conf->copies;j++) {
NeilBrowne875ece2011-07-28 11:39:24 +10002758 int k;
NeilBrownab9d47e2011-05-11 14:54:41 +10002759 int d = r10_bio->devs[j].devnum;
NeilBrown5e570282011-07-28 11:39:25 +10002760 sector_t from_addr, to_addr;
NeilBrown3cb03002011-10-11 16:45:26 +11002761 struct md_rdev *rdev;
NeilBrown40c356c2011-07-28 11:39:24 +10002762 sector_t sector, first_bad;
2763 int bad_sectors;
NeilBrownab9d47e2011-05-11 14:54:41 +10002764 if (!conf->mirrors[d].rdev ||
2765 !test_bit(In_sync, &conf->mirrors[d].rdev->flags))
2766 continue;
2767 /* This is where we read from */
NeilBrowne875ece2011-07-28 11:39:24 +10002768 any_working = 1;
NeilBrown40c356c2011-07-28 11:39:24 +10002769 rdev = conf->mirrors[d].rdev;
2770 sector = r10_bio->devs[j].addr;
2771
2772 if (is_badblock(rdev, sector, max_sync,
2773 &first_bad, &bad_sectors)) {
2774 if (first_bad > sector)
2775 max_sync = first_bad - sector;
2776 else {
2777 bad_sectors -= (sector
2778 - first_bad);
2779 if (max_sync > bad_sectors)
2780 max_sync = bad_sectors;
2781 continue;
2782 }
2783 }
NeilBrownab9d47e2011-05-11 14:54:41 +10002784 bio = r10_bio->devs[0].bio;
2785 bio->bi_next = biolist;
2786 biolist = bio;
2787 bio->bi_private = r10_bio;
2788 bio->bi_end_io = end_sync_read;
2789 bio->bi_rw = READ;
NeilBrown5e570282011-07-28 11:39:25 +10002790 from_addr = r10_bio->devs[j].addr;
NeilBrown24afd802011-12-23 10:17:55 +11002791 bio->bi_sector = from_addr + rdev->data_offset;
2792 bio->bi_bdev = rdev->bdev;
2793 atomic_inc(&rdev->nr_pending);
2794 /* and we write to 'i' (if not in_sync) */
NeilBrownab9d47e2011-05-11 14:54:41 +10002795
2796 for (k=0; k<conf->copies; k++)
2797 if (r10_bio->devs[k].devnum == i)
2798 break;
2799 BUG_ON(k == conf->copies);
NeilBrown5e570282011-07-28 11:39:25 +10002800 to_addr = r10_bio->devs[k].addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10002801 r10_bio->devs[0].devnum = d;
NeilBrown5e570282011-07-28 11:39:25 +10002802 r10_bio->devs[0].addr = from_addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10002803 r10_bio->devs[1].devnum = i;
NeilBrown5e570282011-07-28 11:39:25 +10002804 r10_bio->devs[1].addr = to_addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10002805
NeilBrown24afd802011-12-23 10:17:55 +11002806 rdev = mirror->rdev;
2807 if (!test_bit(In_sync, &rdev->flags)) {
2808 bio = r10_bio->devs[1].bio;
2809 bio->bi_next = biolist;
2810 biolist = bio;
2811 bio->bi_private = r10_bio;
2812 bio->bi_end_io = end_sync_write;
2813 bio->bi_rw = WRITE;
2814 bio->bi_sector = to_addr
2815 + rdev->data_offset;
2816 bio->bi_bdev = rdev->bdev;
2817 atomic_inc(&r10_bio->remaining);
2818 } else
2819 r10_bio->devs[1].bio->bi_end_io = NULL;
2820
2821 /* and maybe write to replacement */
2822 bio = r10_bio->devs[1].repl_bio;
2823 if (bio)
2824 bio->bi_end_io = NULL;
2825 rdev = mirror->replacement;
2826 /* Note: if rdev != NULL, then bio
2827 * cannot be NULL as r10buf_pool_alloc will
2828 * have allocated it.
2829 * So the second test here is pointless.
2830 * But it keeps semantic-checkers happy, and
2831 * this comment keeps human reviewers
2832 * happy.
2833 */
2834 if (rdev == NULL || bio == NULL ||
2835 test_bit(Faulty, &rdev->flags))
2836 break;
2837 bio->bi_next = biolist;
2838 biolist = bio;
2839 bio->bi_private = r10_bio;
2840 bio->bi_end_io = end_sync_write;
2841 bio->bi_rw = WRITE;
2842 bio->bi_sector = to_addr + rdev->data_offset;
2843 bio->bi_bdev = rdev->bdev;
2844 atomic_inc(&r10_bio->remaining);
NeilBrownab9d47e2011-05-11 14:54:41 +10002845 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 }
NeilBrownab9d47e2011-05-11 14:54:41 +10002847 if (j == conf->copies) {
NeilBrowne875ece2011-07-28 11:39:24 +10002848 /* Cannot recover, so abort the recovery or
2849 * record a bad block */
NeilBrownab9d47e2011-05-11 14:54:41 +10002850 put_buf(r10_bio);
2851 if (rb2)
2852 atomic_dec(&rb2->remaining);
2853 r10_bio = rb2;
NeilBrowne875ece2011-07-28 11:39:24 +10002854 if (any_working) {
2855 /* problem is that there are bad blocks
2856 * on other device(s)
2857 */
2858 int k;
2859 for (k = 0; k < conf->copies; k++)
2860 if (r10_bio->devs[k].devnum == i)
2861 break;
NeilBrown24afd802011-12-23 10:17:55 +11002862 if (!test_bit(In_sync,
2863 &mirror->rdev->flags)
2864 && !rdev_set_badblocks(
2865 mirror->rdev,
2866 r10_bio->devs[k].addr,
2867 max_sync, 0))
2868 any_working = 0;
2869 if (mirror->replacement &&
2870 !rdev_set_badblocks(
2871 mirror->replacement,
NeilBrowne875ece2011-07-28 11:39:24 +10002872 r10_bio->devs[k].addr,
2873 max_sync, 0))
2874 any_working = 0;
2875 }
2876 if (!any_working) {
2877 if (!test_and_set_bit(MD_RECOVERY_INTR,
2878 &mddev->recovery))
2879 printk(KERN_INFO "md/raid10:%s: insufficient "
2880 "working devices for recovery.\n",
2881 mdname(mddev));
NeilBrown24afd802011-12-23 10:17:55 +11002882 mirror->recovery_disabled
NeilBrowne875ece2011-07-28 11:39:24 +10002883 = mddev->recovery_disabled;
2884 }
NeilBrownab9d47e2011-05-11 14:54:41 +10002885 break;
2886 }
2887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 if (biolist == NULL) {
2889 while (r10_bio) {
NeilBrown9f2c9d12011-10-11 16:48:43 +11002890 struct r10bio *rb2 = r10_bio;
2891 r10_bio = (struct r10bio*) rb2->master_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 rb2->master_bio = NULL;
2893 put_buf(rb2);
2894 }
2895 goto giveup;
2896 }
2897 } else {
2898 /* resync. Schedule a read for every block at this virt offset */
2899 int count = 0;
NeilBrown6cce3b22006-01-06 00:20:16 -08002900
NeilBrown78200d42009-02-25 13:18:47 +11002901 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
2902
NeilBrown6cce3b22006-01-06 00:20:16 -08002903 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
2904 &sync_blocks, mddev->degraded) &&
NeilBrownab9d47e2011-05-11 14:54:41 +10002905 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED,
2906 &mddev->recovery)) {
NeilBrown6cce3b22006-01-06 00:20:16 -08002907 /* We can skip this block */
2908 *skipped = 1;
2909 return sync_blocks + sectors_skipped;
2910 }
2911 if (sync_blocks < max_sync)
2912 max_sync = sync_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
2914
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 r10_bio->mddev = mddev;
2916 atomic_set(&r10_bio->remaining, 0);
NeilBrown6cce3b22006-01-06 00:20:16 -08002917 raise_barrier(conf, 0);
2918 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
2920 r10_bio->master_bio = NULL;
2921 r10_bio->sector = sector_nr;
2922 set_bit(R10BIO_IsSync, &r10_bio->state);
2923 raid10_find_phys(conf, r10_bio);
2924 r10_bio->sectors = (sector_nr | conf->chunk_mask) - sector_nr +1;
2925
2926 for (i=0; i<conf->copies; i++) {
2927 int d = r10_bio->devs[i].devnum;
NeilBrown40c356c2011-07-28 11:39:24 +10002928 sector_t first_bad, sector;
2929 int bad_sectors;
2930
NeilBrown9ad1aef2011-12-23 10:17:55 +11002931 if (r10_bio->devs[i].repl_bio)
2932 r10_bio->devs[i].repl_bio->bi_end_io = NULL;
2933
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 bio = r10_bio->devs[i].bio;
2935 bio->bi_end_io = NULL;
NeilBrownaf03b8e2007-06-16 10:16:06 -07002936 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 if (conf->mirrors[d].rdev == NULL ||
NeilBrownb2d444d2005-11-08 21:39:31 -08002938 test_bit(Faulty, &conf->mirrors[d].rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 continue;
NeilBrown40c356c2011-07-28 11:39:24 +10002940 sector = r10_bio->devs[i].addr;
2941 if (is_badblock(conf->mirrors[d].rdev,
2942 sector, max_sync,
2943 &first_bad, &bad_sectors)) {
2944 if (first_bad > sector)
2945 max_sync = first_bad - sector;
2946 else {
2947 bad_sectors -= (sector - first_bad);
2948 if (max_sync > bad_sectors)
2949 max_sync = max_sync;
2950 continue;
2951 }
2952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
2954 atomic_inc(&r10_bio->remaining);
2955 bio->bi_next = biolist;
2956 biolist = bio;
2957 bio->bi_private = r10_bio;
2958 bio->bi_end_io = end_sync_read;
NeilBrown802ba062006-12-13 00:34:13 -08002959 bio->bi_rw = READ;
NeilBrown40c356c2011-07-28 11:39:24 +10002960 bio->bi_sector = sector +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 conf->mirrors[d].rdev->data_offset;
2962 bio->bi_bdev = conf->mirrors[d].rdev->bdev;
2963 count++;
NeilBrown9ad1aef2011-12-23 10:17:55 +11002964
2965 if (conf->mirrors[d].replacement == NULL ||
2966 test_bit(Faulty,
2967 &conf->mirrors[d].replacement->flags))
2968 continue;
2969
2970 /* Need to set up for writing to the replacement */
2971 bio = r10_bio->devs[i].repl_bio;
2972 clear_bit(BIO_UPTODATE, &bio->bi_flags);
2973
2974 sector = r10_bio->devs[i].addr;
2975 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
2976 bio->bi_next = biolist;
2977 biolist = bio;
2978 bio->bi_private = r10_bio;
2979 bio->bi_end_io = end_sync_write;
2980 bio->bi_rw = WRITE;
2981 bio->bi_sector = sector +
2982 conf->mirrors[d].replacement->data_offset;
2983 bio->bi_bdev = conf->mirrors[d].replacement->bdev;
2984 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 }
2986
2987 if (count < 2) {
2988 for (i=0; i<conf->copies; i++) {
2989 int d = r10_bio->devs[i].devnum;
2990 if (r10_bio->devs[i].bio->bi_end_io)
NeilBrownab9d47e2011-05-11 14:54:41 +10002991 rdev_dec_pending(conf->mirrors[d].rdev,
2992 mddev);
NeilBrown9ad1aef2011-12-23 10:17:55 +11002993 if (r10_bio->devs[i].repl_bio &&
2994 r10_bio->devs[i].repl_bio->bi_end_io)
2995 rdev_dec_pending(
2996 conf->mirrors[d].replacement,
2997 mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 }
2999 put_buf(r10_bio);
3000 biolist = NULL;
3001 goto giveup;
3002 }
3003 }
3004
3005 for (bio = biolist; bio ; bio=bio->bi_next) {
3006
3007 bio->bi_flags &= ~(BIO_POOL_MASK - 1);
3008 if (bio->bi_end_io)
3009 bio->bi_flags |= 1 << BIO_UPTODATE;
3010 bio->bi_vcnt = 0;
3011 bio->bi_idx = 0;
3012 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 bio->bi_size = 0;
3014 }
3015
3016 nr_sectors = 0;
NeilBrown6cce3b22006-01-06 00:20:16 -08003017 if (sector_nr + max_sync < max_sector)
3018 max_sector = sector_nr + max_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 do {
3020 struct page *page;
3021 int len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 if (sector_nr + (len>>9) > max_sector)
3023 len = (max_sector - sector_nr) << 9;
3024 if (len == 0)
3025 break;
3026 for (bio= biolist ; bio ; bio=bio->bi_next) {
NeilBrownab9d47e2011-05-11 14:54:41 +10003027 struct bio *bio2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
NeilBrownab9d47e2011-05-11 14:54:41 +10003029 if (bio_add_page(bio, page, len, 0))
3030 continue;
3031
3032 /* stop here */
3033 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
3034 for (bio2 = biolist;
3035 bio2 && bio2 != bio;
3036 bio2 = bio2->bi_next) {
3037 /* remove last page from this bio */
3038 bio2->bi_vcnt--;
3039 bio2->bi_size -= len;
3040 bio2->bi_flags &= ~(1<< BIO_SEG_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003042 goto bio_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 }
3044 nr_sectors += len>>9;
3045 sector_nr += len>>9;
3046 } while (biolist->bi_vcnt < RESYNC_PAGES);
3047 bio_full:
3048 r10_bio->sectors = nr_sectors;
3049
3050 while (biolist) {
3051 bio = biolist;
3052 biolist = biolist->bi_next;
3053
3054 bio->bi_next = NULL;
3055 r10_bio = bio->bi_private;
3056 r10_bio->sectors = nr_sectors;
3057
3058 if (bio->bi_end_io == end_sync_read) {
3059 md_sync_acct(bio->bi_bdev, nr_sectors);
3060 generic_make_request(bio);
3061 }
3062 }
3063
NeilBrown57afd892005-06-21 17:17:13 -07003064 if (sectors_skipped)
3065 /* pretend they weren't skipped, it makes
3066 * no important difference in this case
3067 */
3068 md_done_sync(mddev, sectors_skipped, 1);
3069
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 return sectors_skipped + nr_sectors;
3071 giveup:
3072 /* There is nowhere to write, so all non-sync
NeilBrowne875ece2011-07-28 11:39:24 +10003073 * drives must be failed or in resync, all drives
3074 * have a bad block, so try the next chunk...
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 */
NeilBrown09b40682009-02-25 13:18:47 +11003076 if (sector_nr + max_sync < max_sector)
3077 max_sector = sector_nr + max_sync;
3078
3079 sectors_skipped += (max_sector - sector_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 chunks_skipped ++;
3081 sector_nr = max_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 goto skipped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083}
3084
Dan Williams80c3a6c2009-03-17 18:10:40 -07003085static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11003086raid10_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07003087{
3088 sector_t size;
NeilBrowne879a872011-10-11 16:49:02 +11003089 struct r10conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003090
3091 if (!raid_disks)
NeilBrown84707f32010-03-16 17:23:35 +11003092 raid_disks = conf->raid_disks;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003093 if (!sectors)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003094 sectors = conf->dev_sectors;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003095
3096 size = sectors >> conf->chunk_shift;
3097 sector_div(size, conf->far_copies);
3098 size = size * raid_disks;
3099 sector_div(size, conf->near_copies);
3100
3101 return size << conf->chunk_shift;
3102}
3103
Trela, Maciejdab8b292010-03-08 16:02:45 +11003104
NeilBrowne879a872011-10-11 16:49:02 +11003105static struct r10conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106{
NeilBrowne879a872011-10-11 16:49:02 +11003107 struct r10conf *conf = NULL;
NeilBrownc93983b2006-06-26 00:27:41 -07003108 int nc, fc, fo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 sector_t stride, size;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003110 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
Maciej Trelaf73ea872010-06-16 11:46:29 +01003112 if (mddev->new_chunk_sectors < (PAGE_SIZE >> 9) ||
3113 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown128595e2010-05-03 14:47:14 +10003114 printk(KERN_ERR "md/raid10:%s: chunk size must be "
3115 "at least PAGE_SIZE(%ld) and be a power of 2.\n",
3116 mdname(mddev), PAGE_SIZE);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003117 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 }
NeilBrown2604b702006-01-06 00:20:36 -08003119
Maciej Trelaf73ea872010-06-16 11:46:29 +01003120 nc = mddev->new_layout & 255;
3121 fc = (mddev->new_layout >> 8) & 255;
3122 fo = mddev->new_layout & (1<<16);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003123
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 if ((nc*fc) <2 || (nc*fc) > mddev->raid_disks ||
Maciej Trelaf73ea872010-06-16 11:46:29 +01003125 (mddev->new_layout >> 17)) {
NeilBrown128595e2010-05-03 14:47:14 +10003126 printk(KERN_ERR "md/raid10:%s: unsupported raid10 layout: 0x%8x\n",
Maciej Trelaf73ea872010-06-16 11:46:29 +01003127 mdname(mddev), mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 goto out;
3129 }
Trela, Maciejdab8b292010-03-08 16:02:45 +11003130
3131 err = -ENOMEM;
NeilBrowne879a872011-10-11 16:49:02 +11003132 conf = kzalloc(sizeof(struct r10conf), GFP_KERNEL);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003133 if (!conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 goto out;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003135
NeilBrown4443ae12006-01-06 00:20:28 -08003136 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Trela, Maciejdab8b292010-03-08 16:02:45 +11003137 GFP_KERNEL);
3138 if (!conf->mirrors)
3139 goto out;
NeilBrown4443ae12006-01-06 00:20:28 -08003140
3141 conf->tmppage = alloc_page(GFP_KERNEL);
3142 if (!conf->tmppage)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003143 goto out;
3144
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
NeilBrown64a742b2007-02-28 20:11:18 -08003146 conf->raid_disks = mddev->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 conf->near_copies = nc;
3148 conf->far_copies = fc;
3149 conf->copies = nc*fc;
NeilBrownc93983b2006-06-26 00:27:41 -07003150 conf->far_offset = fo;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003151 conf->chunk_mask = mddev->new_chunk_sectors - 1;
3152 conf->chunk_shift = ffz(~mddev->new_chunk_sectors);
3153
3154 conf->r10bio_pool = mempool_create(NR_RAID10_BIOS, r10bio_pool_alloc,
3155 r10bio_pool_free, conf);
3156 if (!conf->r10bio_pool)
3157 goto out;
3158
Andre Noll58c0fed2009-03-31 14:33:13 +11003159 size = mddev->dev_sectors >> conf->chunk_shift;
NeilBrown64a742b2007-02-28 20:11:18 -08003160 sector_div(size, fc);
3161 size = size * conf->raid_disks;
3162 sector_div(size, nc);
3163 /* 'size' is now the number of chunks in the array */
3164 /* calculate "used chunks per device" in 'stride' */
3165 stride = size * conf->copies;
NeilBrownaf03b8e2007-06-16 10:16:06 -07003166
3167 /* We need to round up when dividing by raid_disks to
3168 * get the stride size.
3169 */
3170 stride += conf->raid_disks - 1;
NeilBrown64a742b2007-02-28 20:11:18 -08003171 sector_div(stride, conf->raid_disks);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003172
3173 conf->dev_sectors = stride << conf->chunk_shift;
NeilBrown64a742b2007-02-28 20:11:18 -08003174
NeilBrownc93983b2006-06-26 00:27:41 -07003175 if (fo)
NeilBrown64a742b2007-02-28 20:11:18 -08003176 stride = 1;
3177 else
NeilBrownc93983b2006-06-26 00:27:41 -07003178 sector_div(stride, fc);
NeilBrown64a742b2007-02-28 20:11:18 -08003179 conf->stride = stride << conf->chunk_shift;
3180
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
Neil Browne7e72bf2008-05-14 16:05:54 -07003182 spin_lock_init(&conf->device_lock);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003183 INIT_LIST_HEAD(&conf->retry_list);
3184
3185 spin_lock_init(&conf->resync_lock);
3186 init_waitqueue_head(&conf->wait_barrier);
3187
3188 conf->thread = md_register_thread(raid10d, mddev, NULL);
3189 if (!conf->thread)
3190 goto out;
3191
Trela, Maciejdab8b292010-03-08 16:02:45 +11003192 conf->mddev = mddev;
3193 return conf;
3194
3195 out:
NeilBrown128595e2010-05-03 14:47:14 +10003196 printk(KERN_ERR "md/raid10:%s: couldn't allocate memory.\n",
Trela, Maciejdab8b292010-03-08 16:02:45 +11003197 mdname(mddev));
3198 if (conf) {
3199 if (conf->r10bio_pool)
3200 mempool_destroy(conf->r10bio_pool);
3201 kfree(conf->mirrors);
3202 safe_put_page(conf->tmppage);
3203 kfree(conf);
3204 }
3205 return ERR_PTR(err);
3206}
3207
NeilBrownfd01b882011-10-11 16:47:53 +11003208static int run(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003209{
NeilBrowne879a872011-10-11 16:49:02 +11003210 struct r10conf *conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003211 int i, disk_idx, chunk_size;
NeilBrown0f6d02d2011-10-11 16:48:46 +11003212 struct mirror_info *disk;
NeilBrown3cb03002011-10-11 16:45:26 +11003213 struct md_rdev *rdev;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003214 sector_t size;
3215
3216 /*
3217 * copy the already verified devices into our private RAID10
3218 * bookkeeping area. [whatever we allocate in run(),
3219 * should be freed in stop()]
3220 */
3221
3222 if (mddev->private == NULL) {
3223 conf = setup_conf(mddev);
3224 if (IS_ERR(conf))
3225 return PTR_ERR(conf);
3226 mddev->private = conf;
3227 }
3228 conf = mddev->private;
3229 if (!conf)
3230 goto out;
3231
Trela, Maciejdab8b292010-03-08 16:02:45 +11003232 mddev->thread = conf->thread;
3233 conf->thread = NULL;
3234
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10003235 chunk_size = mddev->chunk_sectors << 9;
3236 blk_queue_io_min(mddev->queue, chunk_size);
3237 if (conf->raid_disks % conf->near_copies)
3238 blk_queue_io_opt(mddev->queue, chunk_size * conf->raid_disks);
3239 else
3240 blk_queue_io_opt(mddev->queue, chunk_size *
3241 (conf->raid_disks / conf->near_copies));
3242
Cheng Renquan159ec1f2009-01-09 08:31:08 +11003243 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrown34b343c2011-07-28 11:31:47 +10003244
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 disk_idx = rdev->raid_disk;
NeilBrown84707f32010-03-16 17:23:35 +11003246 if (disk_idx >= conf->raid_disks
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 || disk_idx < 0)
3248 continue;
3249 disk = conf->mirrors + disk_idx;
3250
NeilBrown56a2559b2011-12-23 10:17:55 +11003251 if (test_bit(Replacement, &rdev->flags)) {
3252 if (disk->replacement)
3253 goto out_free_conf;
3254 disk->replacement = rdev;
3255 } else {
3256 if (disk->rdev)
3257 goto out_free_conf;
3258 disk->rdev = rdev;
3259 }
3260
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10003261 disk_stack_limits(mddev->gendisk, rdev->bdev,
3262 rdev->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 /* as we don't honour merge_bvec_fn, we must never risk
NeilBrown627a2d32010-03-08 16:44:38 +11003264 * violating it, so limit max_segments to 1 lying
3265 * within a single page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 */
NeilBrown627a2d32010-03-08 16:44:38 +11003267 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
3268 blk_queue_max_segments(mddev->queue, 1);
3269 blk_queue_segment_boundary(mddev->queue,
3270 PAGE_CACHE_SIZE - 1);
3271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272
3273 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 }
NeilBrown6d508242005-09-09 16:24:03 -07003275 /* need to check that every block has at least one working mirror */
NeilBrown700c7212011-07-27 11:00:36 +10003276 if (!enough(conf, -1)) {
NeilBrown128595e2010-05-03 14:47:14 +10003277 printk(KERN_ERR "md/raid10:%s: not enough operational mirrors.\n",
NeilBrown6d508242005-09-09 16:24:03 -07003278 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 goto out_free_conf;
3280 }
3281
3282 mddev->degraded = 0;
3283 for (i = 0; i < conf->raid_disks; i++) {
3284
3285 disk = conf->mirrors + i;
3286
NeilBrown56a2559b2011-12-23 10:17:55 +11003287 if (!disk->rdev && disk->replacement) {
3288 /* The replacement is all we have - use it */
3289 disk->rdev = disk->replacement;
3290 disk->replacement = NULL;
3291 clear_bit(Replacement, &disk->rdev->flags);
3292 }
3293
NeilBrown5fd6c1d2006-06-26 00:27:40 -07003294 if (!disk->rdev ||
NeilBrown2e333e82006-10-21 10:24:07 -07003295 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 disk->head_position = 0;
3297 mddev->degraded++;
Neil Brown8c2e8702008-06-28 08:30:52 +10003298 if (disk->rdev)
3299 conf->fullsync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 }
NeilBrownd890fa22011-10-26 11:54:39 +11003301 disk->recovery_disabled = mddev->recovery_disabled - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 }
3303
Andre Noll8c6ac862009-06-18 08:48:06 +10003304 if (mddev->recovery_cp != MaxSector)
NeilBrown128595e2010-05-03 14:47:14 +10003305 printk(KERN_NOTICE "md/raid10:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10003306 " -- starting background reconstruction\n",
3307 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 printk(KERN_INFO
NeilBrown128595e2010-05-03 14:47:14 +10003309 "md/raid10:%s: active with %d out of %d devices\n",
NeilBrown84707f32010-03-16 17:23:35 +11003310 mdname(mddev), conf->raid_disks - mddev->degraded,
3311 conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 /*
3313 * Ok, everything is just fine now
3314 */
Trela, Maciejdab8b292010-03-08 16:02:45 +11003315 mddev->dev_sectors = conf->dev_sectors;
3316 size = raid10_size(mddev, 0, 0);
3317 md_set_array_sectors(mddev, size);
3318 mddev->resync_max_sectors = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319
NeilBrown0d129222006-10-03 01:15:54 -07003320 mddev->queue->backing_dev_info.congested_fn = raid10_congested;
3321 mddev->queue->backing_dev_info.congested_data = mddev;
NeilBrown7a5febe2005-05-16 21:53:16 -07003322
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 /* Calculate max read-ahead size.
3324 * We need to readahead at least twice a whole stripe....
3325 * maybe...
3326 */
3327 {
Andre Noll9d8f0362009-06-18 08:45:01 +10003328 int stripe = conf->raid_disks *
3329 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 stripe /= conf->near_copies;
3331 if (mddev->queue->backing_dev_info.ra_pages < 2* stripe)
3332 mddev->queue->backing_dev_info.ra_pages = 2* stripe;
3333 }
3334
NeilBrown84707f32010-03-16 17:23:35 +11003335 if (conf->near_copies < conf->raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 blk_queue_merge_bvec(mddev->queue, raid10_mergeable_bvec);
Martin K. Petersena91a2782011-03-17 11:11:05 +01003337
3338 if (md_integrity_register(mddev))
3339 goto out_free_conf;
3340
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 return 0;
3342
3343out_free_conf:
NeilBrown01f96c02011-09-21 15:30:20 +10003344 md_unregister_thread(&mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 if (conf->r10bio_pool)
3346 mempool_destroy(conf->r10bio_pool);
NeilBrown1345b1d2006-01-06 00:20:40 -08003347 safe_put_page(conf->tmppage);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07003348 kfree(conf->mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 kfree(conf);
3350 mddev->private = NULL;
3351out:
3352 return -EIO;
3353}
3354
NeilBrownfd01b882011-10-11 16:47:53 +11003355static int stop(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356{
NeilBrowne879a872011-10-11 16:49:02 +11003357 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358
NeilBrown409c57f2009-03-31 14:39:39 +11003359 raise_barrier(conf, 0);
3360 lower_barrier(conf);
3361
NeilBrown01f96c02011-09-21 15:30:20 +10003362 md_unregister_thread(&mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
3364 if (conf->r10bio_pool)
3365 mempool_destroy(conf->r10bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07003366 kfree(conf->mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 kfree(conf);
3368 mddev->private = NULL;
3369 return 0;
3370}
3371
NeilBrownfd01b882011-10-11 16:47:53 +11003372static void raid10_quiesce(struct mddev *mddev, int state)
NeilBrown6cce3b22006-01-06 00:20:16 -08003373{
NeilBrowne879a872011-10-11 16:49:02 +11003374 struct r10conf *conf = mddev->private;
NeilBrown6cce3b22006-01-06 00:20:16 -08003375
3376 switch(state) {
3377 case 1:
3378 raise_barrier(conf, 0);
3379 break;
3380 case 0:
3381 lower_barrier(conf);
3382 break;
3383 }
NeilBrown6cce3b22006-01-06 00:20:16 -08003384}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385
NeilBrownfd01b882011-10-11 16:47:53 +11003386static void *raid10_takeover_raid0(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003387{
NeilBrown3cb03002011-10-11 16:45:26 +11003388 struct md_rdev *rdev;
NeilBrowne879a872011-10-11 16:49:02 +11003389 struct r10conf *conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003390
3391 if (mddev->degraded > 0) {
NeilBrown128595e2010-05-03 14:47:14 +10003392 printk(KERN_ERR "md/raid10:%s: Error: degraded raid0!\n",
3393 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11003394 return ERR_PTR(-EINVAL);
3395 }
3396
Trela, Maciejdab8b292010-03-08 16:02:45 +11003397 /* Set new parameters */
3398 mddev->new_level = 10;
3399 /* new layout: far_copies = 1, near_copies = 2 */
3400 mddev->new_layout = (1<<8) + 2;
3401 mddev->new_chunk_sectors = mddev->chunk_sectors;
3402 mddev->delta_disks = mddev->raid_disks;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003403 mddev->raid_disks *= 2;
3404 /* make sure it will be not marked as dirty */
3405 mddev->recovery_cp = MaxSector;
3406
3407 conf = setup_conf(mddev);
Krzysztof Wojcik02214dc2011-02-04 14:18:26 +01003408 if (!IS_ERR(conf)) {
NeilBrowne93f68a2010-06-15 09:36:03 +01003409 list_for_each_entry(rdev, &mddev->disks, same_set)
3410 if (rdev->raid_disk >= 0)
3411 rdev->new_raid_disk = rdev->raid_disk * 2;
Krzysztof Wojcik02214dc2011-02-04 14:18:26 +01003412 conf->barrier = 1;
3413 }
3414
Trela, Maciejdab8b292010-03-08 16:02:45 +11003415 return conf;
3416}
3417
NeilBrownfd01b882011-10-11 16:47:53 +11003418static void *raid10_takeover(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003419{
NeilBrowne373ab12011-10-11 16:48:59 +11003420 struct r0conf *raid0_conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003421
3422 /* raid10 can take over:
3423 * raid0 - providing it has only two drives
3424 */
3425 if (mddev->level == 0) {
3426 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11003427 raid0_conf = mddev->private;
3428 if (raid0_conf->nr_strip_zones > 1) {
NeilBrown128595e2010-05-03 14:47:14 +10003429 printk(KERN_ERR "md/raid10:%s: cannot takeover raid 0"
3430 " with more than one zone.\n",
3431 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11003432 return ERR_PTR(-EINVAL);
3433 }
3434 return raid10_takeover_raid0(mddev);
3435 }
3436 return ERR_PTR(-EINVAL);
3437}
3438
NeilBrown84fc4b52011-10-11 16:49:58 +11003439static struct md_personality raid10_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440{
3441 .name = "raid10",
NeilBrown2604b702006-01-06 00:20:36 -08003442 .level = 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 .owner = THIS_MODULE,
3444 .make_request = make_request,
3445 .run = run,
3446 .stop = stop,
3447 .status = status,
3448 .error_handler = error,
3449 .hot_add_disk = raid10_add_disk,
3450 .hot_remove_disk= raid10_remove_disk,
3451 .spare_active = raid10_spare_active,
3452 .sync_request = sync_request,
NeilBrown6cce3b22006-01-06 00:20:16 -08003453 .quiesce = raid10_quiesce,
Dan Williams80c3a6c2009-03-17 18:10:40 -07003454 .size = raid10_size,
Trela, Maciejdab8b292010-03-08 16:02:45 +11003455 .takeover = raid10_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456};
3457
3458static int __init raid_init(void)
3459{
NeilBrown2604b702006-01-06 00:20:36 -08003460 return register_md_personality(&raid10_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461}
3462
3463static void raid_exit(void)
3464{
NeilBrown2604b702006-01-06 00:20:36 -08003465 unregister_md_personality(&raid10_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466}
3467
3468module_init(raid_init);
3469module_exit(raid_exit);
3470MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11003471MODULE_DESCRIPTION("RAID10 (striped mirror) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472MODULE_ALIAS("md-personality-9"); /* RAID10 */
NeilBrownd9d166c2006-01-06 00:20:51 -08003473MODULE_ALIAS("md-raid10");
NeilBrown2604b702006-01-06 00:20:36 -08003474MODULE_ALIAS("md-level-10");
NeilBrown34db0cd2011-10-11 16:50:01 +11003475
3476module_param(max_queued_requests, int, S_IRUGO|S_IWUSR);