blob: 1c90005ab343c34f9ab7f4ae1e89b9fdf337846c [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);
NeilBrownfae8cc5e2012-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);
NeilBrownfae8cc5e2012-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
NeilBrownf8c9e742012-05-21 09:28:33 +1000507static void __raid10_find_phys(struct geom *geo, 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 int slot = 0;
515
516 /* now calculate first sector/dev */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000517 chunk = r10bio->sector >> geo->chunk_shift;
518 sector = r10bio->sector & geo->chunk_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
NeilBrown5cf00fc2012-05-21 09:28:20 +1000520 chunk *= geo->near_copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 stripe = chunk;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000522 dev = sector_div(stripe, geo->raid_disks);
523 if (geo->far_offset)
524 stripe *= geo->far_copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
NeilBrown5cf00fc2012-05-21 09:28:20 +1000526 sector += stripe << geo->chunk_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 /* and calculate all the others */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000529 for (n = 0; n < geo->near_copies; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 int d = dev;
531 sector_t s = sector;
532 r10bio->devs[slot].addr = sector;
533 r10bio->devs[slot].devnum = d;
534 slot++;
535
NeilBrown5cf00fc2012-05-21 09:28:20 +1000536 for (f = 1; f < geo->far_copies; f++) {
537 d += geo->near_copies;
538 if (d >= geo->raid_disks)
539 d -= geo->raid_disks;
540 s += geo->stride;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 r10bio->devs[slot].devnum = d;
542 r10bio->devs[slot].addr = s;
543 slot++;
544 }
545 dev++;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000546 if (dev >= geo->raid_disks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 dev = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000548 sector += (geo->chunk_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550 }
NeilBrownf8c9e742012-05-21 09:28:33 +1000551}
552
553static void raid10_find_phys(struct r10conf *conf, struct r10bio *r10bio)
554{
555 struct geom *geo = &conf->geo;
556
557 if (conf->reshape_progress != MaxSector &&
558 ((r10bio->sector >= conf->reshape_progress) !=
559 conf->mddev->reshape_backwards)) {
560 set_bit(R10BIO_Previous, &r10bio->state);
561 geo = &conf->prev;
562 } else
563 clear_bit(R10BIO_Previous, &r10bio->state);
564
565 __raid10_find_phys(geo, r10bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
NeilBrowne879a872011-10-11 16:49:02 +1100568static sector_t raid10_find_virt(struct r10conf *conf, sector_t sector, int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 sector_t offset, chunk, vchunk;
NeilBrownf8c9e742012-05-21 09:28:33 +1000571 /* Never use conf->prev as this is only called during resync
572 * or recovery, so reshape isn't happening
573 */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000574 struct geom *geo = &conf->geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
NeilBrown5cf00fc2012-05-21 09:28:20 +1000576 offset = sector & geo->chunk_mask;
577 if (geo->far_offset) {
NeilBrownc93983b2006-06-26 00:27:41 -0700578 int fc;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000579 chunk = sector >> geo->chunk_shift;
580 fc = sector_div(chunk, geo->far_copies);
581 dev -= fc * geo->near_copies;
NeilBrownc93983b2006-06-26 00:27:41 -0700582 if (dev < 0)
NeilBrown5cf00fc2012-05-21 09:28:20 +1000583 dev += geo->raid_disks;
NeilBrownc93983b2006-06-26 00:27:41 -0700584 } else {
NeilBrown5cf00fc2012-05-21 09:28:20 +1000585 while (sector >= geo->stride) {
586 sector -= geo->stride;
587 if (dev < geo->near_copies)
588 dev += geo->raid_disks - geo->near_copies;
NeilBrownc93983b2006-06-26 00:27:41 -0700589 else
NeilBrown5cf00fc2012-05-21 09:28:20 +1000590 dev -= geo->near_copies;
NeilBrownc93983b2006-06-26 00:27:41 -0700591 }
NeilBrown5cf00fc2012-05-21 09:28:20 +1000592 chunk = sector >> geo->chunk_shift;
NeilBrownc93983b2006-06-26 00:27:41 -0700593 }
NeilBrown5cf00fc2012-05-21 09:28:20 +1000594 vchunk = chunk * geo->raid_disks + dev;
595 sector_div(vchunk, geo->near_copies);
596 return (vchunk << geo->chunk_shift) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
599/**
600 * raid10_mergeable_bvec -- tell bio layer if a two requests can be merged
601 * @q: request queue
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200602 * @bvm: properties of new bio
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 * @biovec: the request that could be merged to it.
604 *
605 * Return amount of bytes we can accept at this offset
NeilBrown050b6612012-03-19 12:46:39 +1100606 * This requires checking for end-of-chunk if near_copies != raid_disks,
607 * and for subordinate merge_bvec_fns if merge_check_needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200609static int raid10_mergeable_bvec(struct request_queue *q,
610 struct bvec_merge_data *bvm,
611 struct bio_vec *biovec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
NeilBrownfd01b882011-10-11 16:47:53 +1100613 struct mddev *mddev = q->queuedata;
NeilBrown050b6612012-03-19 12:46:39 +1100614 struct r10conf *conf = mddev->private;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200615 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +1000617 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200618 unsigned int bio_sectors = bvm->bi_size >> 9;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000619 struct geom *geo = &conf->geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
NeilBrownf8c9e742012-05-21 09:28:33 +1000621 if (conf->reshape_progress != MaxSector &&
622 ((sector >= conf->reshape_progress) !=
623 conf->mddev->reshape_backwards))
624 geo = &conf->prev;
625
NeilBrown5cf00fc2012-05-21 09:28:20 +1000626 if (geo->near_copies < geo->raid_disks) {
NeilBrown050b6612012-03-19 12:46:39 +1100627 max = (chunk_sectors - ((sector & (chunk_sectors - 1))
628 + bio_sectors)) << 9;
629 if (max < 0)
630 /* bio_add cannot handle a negative return */
631 max = 0;
632 if (max <= biovec->bv_len && bio_sectors == 0)
633 return biovec->bv_len;
634 } else
635 max = biovec->bv_len;
636
637 if (mddev->merge_check_needed) {
638 struct r10bio r10_bio;
639 int s;
NeilBrownf8c9e742012-05-21 09:28:33 +1000640 if (conf->reshape_progress != MaxSector) {
641 /* Cannot give any guidance during reshape */
642 if (max <= biovec->bv_len && bio_sectors == 0)
643 return biovec->bv_len;
644 return 0;
645 }
NeilBrown050b6612012-03-19 12:46:39 +1100646 r10_bio.sector = sector;
647 raid10_find_phys(conf, &r10_bio);
648 rcu_read_lock();
649 for (s = 0; s < conf->copies; s++) {
650 int disk = r10_bio.devs[s].devnum;
651 struct md_rdev *rdev = rcu_dereference(
652 conf->mirrors[disk].rdev);
653 if (rdev && !test_bit(Faulty, &rdev->flags)) {
654 struct request_queue *q =
655 bdev_get_queue(rdev->bdev);
656 if (q->merge_bvec_fn) {
657 bvm->bi_sector = r10_bio.devs[s].addr
658 + rdev->data_offset;
659 bvm->bi_bdev = rdev->bdev;
660 max = min(max, q->merge_bvec_fn(
661 q, bvm, biovec));
662 }
663 }
664 rdev = rcu_dereference(conf->mirrors[disk].replacement);
665 if (rdev && !test_bit(Faulty, &rdev->flags)) {
666 struct request_queue *q =
667 bdev_get_queue(rdev->bdev);
668 if (q->merge_bvec_fn) {
669 bvm->bi_sector = r10_bio.devs[s].addr
670 + rdev->data_offset;
671 bvm->bi_bdev = rdev->bdev;
672 max = min(max, q->merge_bvec_fn(
673 q, bvm, biovec));
674 }
675 }
676 }
677 rcu_read_unlock();
678 }
679 return max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
682/*
683 * This routine returns the disk from which the requested read should
684 * be done. There is a per-array 'next expected sequential IO' sector
685 * number - if this matches on the next IO then we use the last disk.
686 * There is also a per-disk 'last know head position' sector that is
687 * maintained from IRQ contexts, both the normal and the resync IO
688 * completion handlers update this position correctly. If there is no
689 * perfect sequential match then we pick the disk whose head is closest.
690 *
691 * If there are 2 mirrors in the same 2 devices, performance degrades
692 * because position is mirror, not device based.
693 *
694 * The rdev for the device selected will have nr_pending incremented.
695 */
696
697/*
698 * FIXME: possibly should rethink readbalancing and do it differently
699 * depending on near_copies / far_copies geometry.
700 */
NeilBrown96c3fd12011-12-23 10:17:54 +1100701static struct md_rdev *read_balance(struct r10conf *conf,
702 struct r10bio *r10_bio,
703 int *max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000705 const sector_t this_sector = r10_bio->sector;
NeilBrown56d99122011-05-11 14:27:03 +1000706 int disk, slot;
NeilBrown856e08e2011-07-28 11:39:23 +1000707 int sectors = r10_bio->sectors;
708 int best_good_sectors;
NeilBrown56d99122011-05-11 14:27:03 +1000709 sector_t new_distance, best_dist;
NeilBrownabbf0982011-12-23 10:17:54 +1100710 struct md_rdev *rdev, *best_rdev;
NeilBrown56d99122011-05-11 14:27:03 +1000711 int do_balance;
712 int best_slot;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000713 struct geom *geo = &conf->geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 raid10_find_phys(conf, r10_bio);
716 rcu_read_lock();
NeilBrown56d99122011-05-11 14:27:03 +1000717retry:
NeilBrown856e08e2011-07-28 11:39:23 +1000718 sectors = r10_bio->sectors;
NeilBrown56d99122011-05-11 14:27:03 +1000719 best_slot = -1;
NeilBrownabbf0982011-12-23 10:17:54 +1100720 best_rdev = NULL;
NeilBrown56d99122011-05-11 14:27:03 +1000721 best_dist = MaxSector;
NeilBrown856e08e2011-07-28 11:39:23 +1000722 best_good_sectors = 0;
NeilBrown56d99122011-05-11 14:27:03 +1000723 do_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 /*
725 * Check if we can balance. We can balance on the whole
NeilBrown6cce3b22006-01-06 00:20:16 -0800726 * device if no resync is going on (recovery is ok), or below
727 * the resync window. We take the first readable disk when
728 * above the resync window.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 */
730 if (conf->mddev->recovery_cp < MaxSector
NeilBrown56d99122011-05-11 14:27:03 +1000731 && (this_sector + sectors >= conf->next_resync))
732 do_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
NeilBrown56d99122011-05-11 14:27:03 +1000734 for (slot = 0; slot < conf->copies ; slot++) {
NeilBrown856e08e2011-07-28 11:39:23 +1000735 sector_t first_bad;
736 int bad_sectors;
737 sector_t dev_sector;
738
NeilBrown56d99122011-05-11 14:27:03 +1000739 if (r10_bio->devs[slot].bio == IO_BLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 continue;
NeilBrown56d99122011-05-11 14:27:03 +1000741 disk = r10_bio->devs[slot].devnum;
NeilBrownabbf0982011-12-23 10:17:54 +1100742 rdev = rcu_dereference(conf->mirrors[disk].replacement);
743 if (rdev == NULL || test_bit(Faulty, &rdev->flags) ||
NeilBrown050b6612012-03-19 12:46:39 +1100744 test_bit(Unmerged, &rdev->flags) ||
NeilBrownabbf0982011-12-23 10:17:54 +1100745 r10_bio->devs[slot].addr + sectors > rdev->recovery_offset)
746 rdev = rcu_dereference(conf->mirrors[disk].rdev);
NeilBrown050b6612012-03-19 12:46:39 +1100747 if (rdev == NULL ||
748 test_bit(Faulty, &rdev->flags) ||
749 test_bit(Unmerged, &rdev->flags))
NeilBrownabbf0982011-12-23 10:17:54 +1100750 continue;
751 if (!test_bit(In_sync, &rdev->flags) &&
752 r10_bio->devs[slot].addr + sectors > rdev->recovery_offset)
NeilBrown56d99122011-05-11 14:27:03 +1000753 continue;
754
NeilBrown856e08e2011-07-28 11:39:23 +1000755 dev_sector = r10_bio->devs[slot].addr;
756 if (is_badblock(rdev, dev_sector, sectors,
757 &first_bad, &bad_sectors)) {
758 if (best_dist < MaxSector)
759 /* Already have a better slot */
760 continue;
761 if (first_bad <= dev_sector) {
762 /* Cannot read here. If this is the
763 * 'primary' device, then we must not read
764 * beyond 'bad_sectors' from another device.
765 */
766 bad_sectors -= (dev_sector - first_bad);
767 if (!do_balance && sectors > bad_sectors)
768 sectors = bad_sectors;
769 if (best_good_sectors > sectors)
770 best_good_sectors = sectors;
771 } else {
772 sector_t good_sectors =
773 first_bad - dev_sector;
774 if (good_sectors > best_good_sectors) {
775 best_good_sectors = good_sectors;
776 best_slot = slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100777 best_rdev = rdev;
NeilBrown856e08e2011-07-28 11:39:23 +1000778 }
779 if (!do_balance)
780 /* Must read from here */
781 break;
782 }
783 continue;
784 } else
785 best_good_sectors = sectors;
786
NeilBrown56d99122011-05-11 14:27:03 +1000787 if (!do_balance)
788 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
NeilBrown22dfdf52005-11-28 13:44:09 -0800790 /* This optimisation is debatable, and completely destroys
791 * sequential read speed for 'far copies' arrays. So only
792 * keep it for 'near' arrays, and review those later.
793 */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000794 if (geo->near_copies > 1 && !atomic_read(&rdev->nr_pending))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 break;
Keld Simonsen8ed3a192008-03-04 14:29:34 -0800796
797 /* for far > 1 always use the lowest address */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000798 if (geo->far_copies > 1)
NeilBrown56d99122011-05-11 14:27:03 +1000799 new_distance = r10_bio->devs[slot].addr;
Keld Simonsen8ed3a192008-03-04 14:29:34 -0800800 else
NeilBrown56d99122011-05-11 14:27:03 +1000801 new_distance = abs(r10_bio->devs[slot].addr -
802 conf->mirrors[disk].head_position);
803 if (new_distance < best_dist) {
804 best_dist = new_distance;
805 best_slot = slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100806 best_rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808 }
NeilBrownabbf0982011-12-23 10:17:54 +1100809 if (slot >= conf->copies) {
NeilBrown56d99122011-05-11 14:27:03 +1000810 slot = best_slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100811 rdev = best_rdev;
812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
NeilBrown56d99122011-05-11 14:27:03 +1000814 if (slot >= 0) {
NeilBrown56d99122011-05-11 14:27:03 +1000815 atomic_inc(&rdev->nr_pending);
816 if (test_bit(Faulty, &rdev->flags)) {
817 /* Cannot risk returning a device that failed
818 * before we inc'ed nr_pending
819 */
820 rdev_dec_pending(rdev, conf->mddev);
821 goto retry;
822 }
823 r10_bio->read_slot = slot;
824 } else
NeilBrown96c3fd12011-12-23 10:17:54 +1100825 rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 rcu_read_unlock();
NeilBrown856e08e2011-07-28 11:39:23 +1000827 *max_sectors = best_good_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
NeilBrown96c3fd12011-12-23 10:17:54 +1100829 return rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
NeilBrown0d129222006-10-03 01:15:54 -0700832static int raid10_congested(void *data, int bits)
833{
NeilBrownfd01b882011-10-11 16:47:53 +1100834 struct mddev *mddev = data;
NeilBrowne879a872011-10-11 16:49:02 +1100835 struct r10conf *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700836 int i, ret = 0;
837
NeilBrown34db0cd2011-10-11 16:50:01 +1100838 if ((bits & (1 << BDI_async_congested)) &&
839 conf->pending_count >= max_queued_requests)
840 return 1;
841
NeilBrown3fa841d2009-09-23 18:10:29 +1000842 if (mddev_congested(mddev, bits))
843 return 1;
NeilBrown0d129222006-10-03 01:15:54 -0700844 rcu_read_lock();
NeilBrownf8c9e742012-05-21 09:28:33 +1000845 for (i = 0;
846 (i < conf->geo.raid_disks || i < conf->prev.raid_disks)
847 && ret == 0;
848 i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100849 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
NeilBrown0d129222006-10-03 01:15:54 -0700850 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200851 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700852
853 ret |= bdi_congested(&q->backing_dev_info, bits);
854 }
855 }
856 rcu_read_unlock();
857 return ret;
858}
859
NeilBrowne879a872011-10-11 16:49:02 +1100860static void flush_pending_writes(struct r10conf *conf)
NeilBrowna35e63e2008-03-04 14:29:29 -0800861{
862 /* Any writes that have been queued but are awaiting
863 * bitmap updates get flushed here.
NeilBrowna35e63e2008-03-04 14:29:29 -0800864 */
NeilBrowna35e63e2008-03-04 14:29:29 -0800865 spin_lock_irq(&conf->device_lock);
866
867 if (conf->pending_bio_list.head) {
868 struct bio *bio;
869 bio = bio_list_get(&conf->pending_bio_list);
NeilBrown34db0cd2011-10-11 16:50:01 +1100870 conf->pending_count = 0;
NeilBrowna35e63e2008-03-04 14:29:29 -0800871 spin_unlock_irq(&conf->device_lock);
872 /* flush any pending bitmap writes to disk
873 * before proceeding w/ I/O */
874 bitmap_unplug(conf->mddev->bitmap);
NeilBrown34db0cd2011-10-11 16:50:01 +1100875 wake_up(&conf->wait_barrier);
NeilBrowna35e63e2008-03-04 14:29:29 -0800876
877 while (bio) { /* submit pending writes */
878 struct bio *next = bio->bi_next;
879 bio->bi_next = NULL;
880 generic_make_request(bio);
881 bio = next;
882 }
NeilBrowna35e63e2008-03-04 14:29:29 -0800883 } else
884 spin_unlock_irq(&conf->device_lock);
NeilBrowna35e63e2008-03-04 14:29:29 -0800885}
Jens Axboe7eaceac2011-03-10 08:52:07 +0100886
NeilBrown0a27ec92006-01-06 00:20:13 -0800887/* Barriers....
888 * Sometimes we need to suspend IO while we do something else,
889 * either some resync/recovery, or reconfigure the array.
890 * To do this we raise a 'barrier'.
891 * The 'barrier' is a counter that can be raised multiple times
892 * to count how many activities are happening which preclude
893 * normal IO.
894 * We can only raise the barrier if there is no pending IO.
895 * i.e. if nr_pending == 0.
896 * We choose only to raise the barrier if no-one is waiting for the
897 * barrier to go down. This means that as soon as an IO request
898 * is ready, no other operations which require a barrier will start
899 * until the IO request has had a chance.
900 *
901 * So: regular IO calls 'wait_barrier'. When that returns there
902 * is no backgroup IO happening, It must arrange to call
903 * allow_barrier when it has finished its IO.
904 * backgroup IO calls must call raise_barrier. Once that returns
905 * there is no normal IO happeing. It must arrange to call
906 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
NeilBrowne879a872011-10-11 16:49:02 +1100909static void raise_barrier(struct r10conf *conf, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
NeilBrown6cce3b22006-01-06 00:20:16 -0800911 BUG_ON(force && !conf->barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 spin_lock_irq(&conf->resync_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
NeilBrown6cce3b22006-01-06 00:20:16 -0800914 /* Wait until no block IO is waiting (unless 'force') */
915 wait_event_lock_irq(conf->wait_barrier, force || !conf->nr_waiting,
NeilBrownc3b328a2011-04-18 18:25:43 +1000916 conf->resync_lock, );
NeilBrown0a27ec92006-01-06 00:20:13 -0800917
918 /* block any new IO from starting */
919 conf->barrier++;
920
NeilBrownc3b328a2011-04-18 18:25:43 +1000921 /* Now wait for all pending IO to complete */
NeilBrown0a27ec92006-01-06 00:20:13 -0800922 wait_event_lock_irq(conf->wait_barrier,
923 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
NeilBrownc3b328a2011-04-18 18:25:43 +1000924 conf->resync_lock, );
NeilBrown0a27ec92006-01-06 00:20:13 -0800925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 spin_unlock_irq(&conf->resync_lock);
927}
928
NeilBrowne879a872011-10-11 16:49:02 +1100929static void lower_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -0800930{
931 unsigned long flags;
932 spin_lock_irqsave(&conf->resync_lock, flags);
933 conf->barrier--;
934 spin_unlock_irqrestore(&conf->resync_lock, flags);
935 wake_up(&conf->wait_barrier);
936}
937
NeilBrowne879a872011-10-11 16:49:02 +1100938static void wait_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -0800939{
940 spin_lock_irq(&conf->resync_lock);
941 if (conf->barrier) {
942 conf->nr_waiting++;
NeilBrownd6b42dc2012-03-19 12:46:38 +1100943 /* Wait for the barrier to drop.
944 * However if there are already pending
945 * requests (preventing the barrier from
946 * rising completely), and the
947 * pre-process bio queue isn't empty,
948 * then don't wait, as we need to empty
949 * that queue to get the nr_pending
950 * count down.
951 */
952 wait_event_lock_irq(conf->wait_barrier,
953 !conf->barrier ||
954 (conf->nr_pending &&
955 current->bio_list &&
956 !bio_list_empty(current->bio_list)),
NeilBrown0a27ec92006-01-06 00:20:13 -0800957 conf->resync_lock,
NeilBrownd6b42dc2012-03-19 12:46:38 +1100958 );
NeilBrown0a27ec92006-01-06 00:20:13 -0800959 conf->nr_waiting--;
960 }
961 conf->nr_pending++;
962 spin_unlock_irq(&conf->resync_lock);
963}
964
NeilBrowne879a872011-10-11 16:49:02 +1100965static void allow_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -0800966{
967 unsigned long flags;
968 spin_lock_irqsave(&conf->resync_lock, flags);
969 conf->nr_pending--;
970 spin_unlock_irqrestore(&conf->resync_lock, flags);
971 wake_up(&conf->wait_barrier);
972}
973
NeilBrowne879a872011-10-11 16:49:02 +1100974static void freeze_array(struct r10conf *conf)
NeilBrown4443ae12006-01-06 00:20:28 -0800975{
976 /* stop syncio and normal IO and wait for everything to
NeilBrownf1885932006-01-06 00:20:42 -0800977 * go quiet.
NeilBrown4443ae12006-01-06 00:20:28 -0800978 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -0800979 * wait until nr_pending match nr_queued+1
980 * This is called in the context of one normal IO request
981 * that has failed. Thus any sync request that might be pending
982 * will be blocked by nr_pending, and we need to wait for
983 * pending IO requests to complete or be queued for re-try.
984 * Thus the number queued (nr_queued) plus this request (1)
985 * must match the number of pending IOs (nr_pending) before
986 * we continue.
NeilBrown4443ae12006-01-06 00:20:28 -0800987 */
988 spin_lock_irq(&conf->resync_lock);
989 conf->barrier++;
990 conf->nr_waiting++;
991 wait_event_lock_irq(conf->wait_barrier,
NeilBrown1c830532008-03-04 14:29:35 -0800992 conf->nr_pending == conf->nr_queued+1,
NeilBrown4443ae12006-01-06 00:20:28 -0800993 conf->resync_lock,
NeilBrownc3b328a2011-04-18 18:25:43 +1000994 flush_pending_writes(conf));
995
NeilBrown4443ae12006-01-06 00:20:28 -0800996 spin_unlock_irq(&conf->resync_lock);
997}
998
NeilBrowne879a872011-10-11 16:49:02 +1100999static void unfreeze_array(struct r10conf *conf)
NeilBrown4443ae12006-01-06 00:20:28 -08001000{
1001 /* reverse the effect of the freeze */
1002 spin_lock_irq(&conf->resync_lock);
1003 conf->barrier--;
1004 conf->nr_waiting--;
1005 wake_up(&conf->wait_barrier);
1006 spin_unlock_irq(&conf->resync_lock);
1007}
1008
NeilBrownf8c9e742012-05-21 09:28:33 +10001009static sector_t choose_data_offset(struct r10bio *r10_bio,
1010 struct md_rdev *rdev)
1011{
1012 if (!test_bit(MD_RECOVERY_RESHAPE, &rdev->mddev->recovery) ||
1013 test_bit(R10BIO_Previous, &r10_bio->state))
1014 return rdev->data_offset;
1015 else
1016 return rdev->new_data_offset;
1017}
1018
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -07001019static void make_request(struct mddev *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
NeilBrowne879a872011-10-11 16:49:02 +11001021 struct r10conf *conf = mddev->private;
NeilBrown9f2c9d12011-10-11 16:48:43 +11001022 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 struct bio *read_bio;
1024 int i;
NeilBrownf8c9e742012-05-21 09:28:33 +10001025 sector_t chunk_mask = (conf->geo.chunk_mask & conf->prev.chunk_mask);
NeilBrown5cf00fc2012-05-21 09:28:20 +10001026 int chunk_sects = chunk_mask + 1;
Jens Axboea3623572005-11-01 09:26:16 +01001027 const int rw = bio_data_dir(bio);
NeilBrown2c7d46e2010-08-18 16:16:05 +10001028 const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
Tejun Heoe9c74692010-09-03 11:56:18 +02001029 const unsigned long do_fua = (bio->bi_rw & REQ_FUA);
NeilBrown6cce3b22006-01-06 00:20:16 -08001030 unsigned long flags;
NeilBrown3cb03002011-10-11 16:45:26 +11001031 struct md_rdev *blocked_rdev;
NeilBrownc3b328a2011-04-18 18:25:43 +10001032 int plugged;
NeilBrownd4432c22011-07-28 11:39:24 +10001033 int sectors_handled;
1034 int max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Tejun Heoe9c74692010-09-03 11:56:18 +02001036 if (unlikely(bio->bi_rw & REQ_FLUSH)) {
1037 md_flush_request(mddev, bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001038 return;
NeilBrowne5dcdd82005-09-09 16:23:41 -07001039 }
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 /* If this request crosses a chunk boundary, we need to
1042 * split it. This will only happen for 1 PAGE (or less) requests.
1043 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10001044 if (unlikely((bio->bi_sector & chunk_mask) + (bio->bi_size >> 9)
1045 > chunk_sects
NeilBrownf8c9e742012-05-21 09:28:33 +10001046 && (conf->geo.near_copies < conf->geo.raid_disks
1047 || conf->prev.near_copies < conf->prev.raid_disks))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 struct bio_pair *bp;
1049 /* Sanity check -- queue functions should prevent this happening */
1050 if (bio->bi_vcnt != 1 ||
1051 bio->bi_idx != 0)
1052 goto bad_map;
1053 /* This is a one page bio that upper layers
1054 * refuse to split for us, so we need to split it.
1055 */
Denis ChengRq6feef532008-10-09 08:57:05 +02001056 bp = bio_split(bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 chunk_sects - (bio->bi_sector & (chunk_sects - 1)) );
NeilBrown51e9ac72010-08-07 21:17:00 +10001058
1059 /* Each of these 'make_request' calls will call 'wait_barrier'.
1060 * If the first succeeds but the second blocks due to the resync
1061 * thread raising the barrier, we will deadlock because the
1062 * IO to the underlying device will be queued in generic_make_request
1063 * and will never complete, so will never reduce nr_pending.
1064 * So increment nr_waiting here so no new raise_barriers will
1065 * succeed, and so the second wait_barrier cannot block.
1066 */
1067 spin_lock_irq(&conf->resync_lock);
1068 conf->nr_waiting++;
1069 spin_unlock_irq(&conf->resync_lock);
1070
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001071 make_request(mddev, &bp->bio1);
1072 make_request(mddev, &bp->bio2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
NeilBrown51e9ac72010-08-07 21:17:00 +10001074 spin_lock_irq(&conf->resync_lock);
1075 conf->nr_waiting--;
1076 wake_up(&conf->wait_barrier);
1077 spin_unlock_irq(&conf->resync_lock);
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 bio_pair_release(bp);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001080 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 bad_map:
NeilBrown128595e2010-05-03 14:47:14 +10001082 printk("md/raid10:%s: make_request bug: can't convert block across chunks"
1083 " or bigger than %dk %llu %d\n", mdname(mddev), chunk_sects/2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 (unsigned long long)bio->bi_sector, bio->bi_size >> 10);
1085
NeilBrown6712ecf2007-09-27 12:47:43 +02001086 bio_io_error(bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001087 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 }
1089
NeilBrown3d310eb2005-06-21 17:17:26 -07001090 md_write_start(mddev, bio);
NeilBrown06d91a52005-06-21 17:17:12 -07001091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 /*
1093 * Register the new request and wait if the reconstruction
1094 * thread has put up a bar for new requests.
1095 * Continue immediately if no resync is active currently.
1096 */
NeilBrown0a27ec92006-01-06 00:20:13 -08001097 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1100
1101 r10_bio->master_bio = bio;
1102 r10_bio->sectors = bio->bi_size >> 9;
1103
1104 r10_bio->mddev = mddev;
1105 r10_bio->sector = bio->bi_sector;
NeilBrown6cce3b22006-01-06 00:20:16 -08001106 r10_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
NeilBrown856e08e2011-07-28 11:39:23 +10001108 /* We might need to issue multiple reads to different
1109 * devices if there are bad blocks around, so we keep
1110 * track of the number of reads in bio->bi_phys_segments.
1111 * If this is 0, there is only one r10_bio and no locking
1112 * will be needed when the request completes. If it is
1113 * non-zero, then it is the number of not-completed requests.
1114 */
1115 bio->bi_phys_segments = 0;
1116 clear_bit(BIO_SEG_VALID, &bio->bi_flags);
1117
Jens Axboea3623572005-11-01 09:26:16 +01001118 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 /*
1120 * read balancing logic:
1121 */
NeilBrown96c3fd12011-12-23 10:17:54 +11001122 struct md_rdev *rdev;
NeilBrown856e08e2011-07-28 11:39:23 +10001123 int slot;
1124
1125read_again:
NeilBrown96c3fd12011-12-23 10:17:54 +11001126 rdev = read_balance(conf, r10_bio, &max_sectors);
1127 if (!rdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 raid_end_bio_io(r10_bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001129 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
NeilBrown96c3fd12011-12-23 10:17:54 +11001131 slot = r10_bio->read_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
NeilBrowna167f662010-10-26 18:31:13 +11001133 read_bio = bio_clone_mddev(bio, GFP_NOIO, mddev);
NeilBrown856e08e2011-07-28 11:39:23 +10001134 md_trim_bio(read_bio, r10_bio->sector - bio->bi_sector,
1135 max_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 r10_bio->devs[slot].bio = read_bio;
NeilBrownabbf0982011-12-23 10:17:54 +11001138 r10_bio->devs[slot].rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 read_bio->bi_sector = r10_bio->devs[slot].addr +
NeilBrownf8c9e742012-05-21 09:28:33 +10001141 choose_data_offset(r10_bio, rdev);
NeilBrown96c3fd12011-12-23 10:17:54 +11001142 read_bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 read_bio->bi_end_io = raid10_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001144 read_bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 read_bio->bi_private = r10_bio;
1146
NeilBrown856e08e2011-07-28 11:39:23 +10001147 if (max_sectors < r10_bio->sectors) {
1148 /* Could not read all from this device, so we will
1149 * need another r10_bio.
1150 */
NeilBrown856e08e2011-07-28 11:39:23 +10001151 sectors_handled = (r10_bio->sectors + max_sectors
1152 - bio->bi_sector);
1153 r10_bio->sectors = max_sectors;
1154 spin_lock_irq(&conf->device_lock);
1155 if (bio->bi_phys_segments == 0)
1156 bio->bi_phys_segments = 2;
1157 else
1158 bio->bi_phys_segments++;
1159 spin_unlock(&conf->device_lock);
1160 /* Cannot call generic_make_request directly
1161 * as that will be queued in __generic_make_request
1162 * and subsequent mempool_alloc might block
1163 * waiting for it. so hand bio over to raid10d.
1164 */
1165 reschedule_retry(r10_bio);
1166
1167 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1168
1169 r10_bio->master_bio = bio;
1170 r10_bio->sectors = ((bio->bi_size >> 9)
1171 - sectors_handled);
1172 r10_bio->state = 0;
1173 r10_bio->mddev = mddev;
1174 r10_bio->sector = bio->bi_sector + sectors_handled;
1175 goto read_again;
1176 } else
1177 generic_make_request(read_bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001178 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
1180
1181 /*
1182 * WRITE:
1183 */
NeilBrown34db0cd2011-10-11 16:50:01 +11001184 if (conf->pending_count >= max_queued_requests) {
1185 md_wakeup_thread(mddev->thread);
1186 wait_event(conf->wait_barrier,
1187 conf->pending_count < max_queued_requests);
1188 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07001189 /* first select target devices under rcu_lock and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 * inc refcount on their rdev. Record them by setting
1191 * bios[x] to bio
NeilBrownd4432c22011-07-28 11:39:24 +10001192 * If there are known/acknowledged bad blocks on any device
1193 * on which we have seen a write error, we want to avoid
1194 * writing to those blocks. This potentially requires several
1195 * writes to write around the bad blocks. Each set of writes
1196 * gets its own r10_bio with a set of bios attached. The number
1197 * of r10_bios is recored in bio->bi_phys_segments just as with
1198 * the read case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 */
NeilBrownc3b328a2011-04-18 18:25:43 +10001200 plugged = mddev_check_plugged(mddev);
1201
NeilBrown69335ef2011-12-23 10:17:54 +11001202 r10_bio->read_slot = -1; /* make sure repl_bio gets freed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 raid10_find_phys(conf, r10_bio);
NeilBrownd4432c22011-07-28 11:39:24 +10001204retry_write:
Harvey Harrisoncb6969e2008-05-06 20:42:32 -07001205 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 rcu_read_lock();
NeilBrownd4432c22011-07-28 11:39:24 +10001207 max_sectors = r10_bio->sectors;
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 for (i = 0; i < conf->copies; i++) {
1210 int d = r10_bio->devs[i].devnum;
NeilBrown3cb03002011-10-11 16:45:26 +11001211 struct md_rdev *rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown475b0322011-12-23 10:17:55 +11001212 struct md_rdev *rrdev = rcu_dereference(
1213 conf->mirrors[d].replacement);
NeilBrown4ca40c22011-12-23 10:17:55 +11001214 if (rdev == rrdev)
1215 rrdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07001216 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
1217 atomic_inc(&rdev->nr_pending);
1218 blocked_rdev = rdev;
1219 break;
1220 }
NeilBrown475b0322011-12-23 10:17:55 +11001221 if (rrdev && unlikely(test_bit(Blocked, &rrdev->flags))) {
1222 atomic_inc(&rrdev->nr_pending);
1223 blocked_rdev = rrdev;
1224 break;
1225 }
NeilBrown050b6612012-03-19 12:46:39 +11001226 if (rrdev && (test_bit(Faulty, &rrdev->flags)
1227 || test_bit(Unmerged, &rrdev->flags)))
NeilBrown475b0322011-12-23 10:17:55 +11001228 rrdev = NULL;
1229
NeilBrownd4432c22011-07-28 11:39:24 +10001230 r10_bio->devs[i].bio = NULL;
NeilBrown475b0322011-12-23 10:17:55 +11001231 r10_bio->devs[i].repl_bio = NULL;
NeilBrown050b6612012-03-19 12:46:39 +11001232 if (!rdev || test_bit(Faulty, &rdev->flags) ||
1233 test_bit(Unmerged, &rdev->flags)) {
NeilBrown6cce3b22006-01-06 00:20:16 -08001234 set_bit(R10BIO_Degraded, &r10_bio->state);
NeilBrownd4432c22011-07-28 11:39:24 +10001235 continue;
NeilBrown6cce3b22006-01-06 00:20:16 -08001236 }
NeilBrownd4432c22011-07-28 11:39:24 +10001237 if (test_bit(WriteErrorSeen, &rdev->flags)) {
1238 sector_t first_bad;
1239 sector_t dev_sector = r10_bio->devs[i].addr;
1240 int bad_sectors;
1241 int is_bad;
1242
1243 is_bad = is_badblock(rdev, dev_sector,
1244 max_sectors,
1245 &first_bad, &bad_sectors);
1246 if (is_bad < 0) {
1247 /* Mustn't write here until the bad block
1248 * is acknowledged
1249 */
1250 atomic_inc(&rdev->nr_pending);
1251 set_bit(BlockedBadBlocks, &rdev->flags);
1252 blocked_rdev = rdev;
1253 break;
1254 }
1255 if (is_bad && first_bad <= dev_sector) {
1256 /* Cannot write here at all */
1257 bad_sectors -= (dev_sector - first_bad);
1258 if (bad_sectors < max_sectors)
1259 /* Mustn't write more than bad_sectors
1260 * to other devices yet
1261 */
1262 max_sectors = bad_sectors;
1263 /* We don't set R10BIO_Degraded as that
1264 * only applies if the disk is missing,
1265 * so it might be re-added, and we want to
1266 * know to recover this chunk.
1267 * In this case the device is here, and the
1268 * fact that this chunk is not in-sync is
1269 * recorded in the bad block log.
1270 */
1271 continue;
1272 }
1273 if (is_bad) {
1274 int good_sectors = first_bad - dev_sector;
1275 if (good_sectors < max_sectors)
1276 max_sectors = good_sectors;
1277 }
1278 }
1279 r10_bio->devs[i].bio = bio;
1280 atomic_inc(&rdev->nr_pending);
NeilBrown475b0322011-12-23 10:17:55 +11001281 if (rrdev) {
1282 r10_bio->devs[i].repl_bio = bio;
1283 atomic_inc(&rrdev->nr_pending);
1284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
1286 rcu_read_unlock();
1287
Dan Williams6bfe0b42008-04-30 00:52:32 -07001288 if (unlikely(blocked_rdev)) {
1289 /* Have to wait for this device to get unblocked, then retry */
1290 int j;
1291 int d;
1292
NeilBrown475b0322011-12-23 10:17:55 +11001293 for (j = 0; j < i; j++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07001294 if (r10_bio->devs[j].bio) {
1295 d = r10_bio->devs[j].devnum;
1296 rdev_dec_pending(conf->mirrors[d].rdev, mddev);
1297 }
NeilBrown475b0322011-12-23 10:17:55 +11001298 if (r10_bio->devs[j].repl_bio) {
NeilBrown4ca40c22011-12-23 10:17:55 +11001299 struct md_rdev *rdev;
NeilBrown475b0322011-12-23 10:17:55 +11001300 d = r10_bio->devs[j].devnum;
NeilBrown4ca40c22011-12-23 10:17:55 +11001301 rdev = conf->mirrors[d].replacement;
1302 if (!rdev) {
1303 /* Race with remove_disk */
1304 smp_mb();
1305 rdev = conf->mirrors[d].rdev;
1306 }
1307 rdev_dec_pending(rdev, mddev);
NeilBrown475b0322011-12-23 10:17:55 +11001308 }
1309 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07001310 allow_barrier(conf);
1311 md_wait_for_blocked_rdev(blocked_rdev, mddev);
1312 wait_barrier(conf);
1313 goto retry_write;
1314 }
1315
NeilBrownd4432c22011-07-28 11:39:24 +10001316 if (max_sectors < r10_bio->sectors) {
1317 /* We are splitting this into multiple parts, so
1318 * we need to prepare for allocating another r10_bio.
1319 */
1320 r10_bio->sectors = max_sectors;
1321 spin_lock_irq(&conf->device_lock);
1322 if (bio->bi_phys_segments == 0)
1323 bio->bi_phys_segments = 2;
1324 else
1325 bio->bi_phys_segments++;
1326 spin_unlock_irq(&conf->device_lock);
1327 }
1328 sectors_handled = r10_bio->sector + max_sectors - bio->bi_sector;
1329
NeilBrown4e780642010-10-19 12:54:01 +11001330 atomic_set(&r10_bio->remaining, 1);
NeilBrownd4432c22011-07-28 11:39:24 +10001331 bitmap_startwrite(mddev->bitmap, r10_bio->sector, r10_bio->sectors, 0);
NeilBrown06d91a52005-06-21 17:17:12 -07001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 for (i = 0; i < conf->copies; i++) {
1334 struct bio *mbio;
1335 int d = r10_bio->devs[i].devnum;
1336 if (!r10_bio->devs[i].bio)
1337 continue;
1338
NeilBrowna167f662010-10-26 18:31:13 +11001339 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
NeilBrownd4432c22011-07-28 11:39:24 +10001340 md_trim_bio(mbio, r10_bio->sector - bio->bi_sector,
1341 max_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 r10_bio->devs[i].bio = mbio;
1343
NeilBrownd4432c22011-07-28 11:39:24 +10001344 mbio->bi_sector = (r10_bio->devs[i].addr+
NeilBrownf8c9e742012-05-21 09:28:33 +10001345 choose_data_offset(r10_bio,
1346 conf->mirrors[d].rdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 mbio->bi_bdev = conf->mirrors[d].rdev->bdev;
1348 mbio->bi_end_io = raid10_end_write_request;
Tejun Heoe9c74692010-09-03 11:56:18 +02001349 mbio->bi_rw = WRITE | do_sync | do_fua;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 mbio->bi_private = r10_bio;
1351
1352 atomic_inc(&r10_bio->remaining);
NeilBrown4e780642010-10-19 12:54:01 +11001353 spin_lock_irqsave(&conf->device_lock, flags);
1354 bio_list_add(&conf->pending_bio_list, mbio);
NeilBrown34db0cd2011-10-11 16:50:01 +11001355 conf->pending_count++;
NeilBrown4e780642010-10-19 12:54:01 +11001356 spin_unlock_irqrestore(&conf->device_lock, flags);
NeilBrown475b0322011-12-23 10:17:55 +11001357
1358 if (!r10_bio->devs[i].repl_bio)
1359 continue;
1360
1361 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
1362 md_trim_bio(mbio, r10_bio->sector - bio->bi_sector,
1363 max_sectors);
1364 r10_bio->devs[i].repl_bio = mbio;
1365
NeilBrown4ca40c22011-12-23 10:17:55 +11001366 /* We are actively writing to the original device
1367 * so it cannot disappear, so the replacement cannot
1368 * become NULL here
1369 */
NeilBrownf8c9e742012-05-21 09:28:33 +10001370 mbio->bi_sector = (r10_bio->devs[i].addr +
1371 choose_data_offset(
1372 r10_bio,
1373 conf->mirrors[d].replacement));
NeilBrown475b0322011-12-23 10:17:55 +11001374 mbio->bi_bdev = conf->mirrors[d].replacement->bdev;
1375 mbio->bi_end_io = raid10_end_write_request;
1376 mbio->bi_rw = WRITE | do_sync | do_fua;
1377 mbio->bi_private = r10_bio;
1378
1379 atomic_inc(&r10_bio->remaining);
1380 spin_lock_irqsave(&conf->device_lock, flags);
1381 bio_list_add(&conf->pending_bio_list, mbio);
1382 conf->pending_count++;
1383 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
1385
NeilBrown079fa162011-09-10 17:21:23 +10001386 /* Don't remove the bias on 'remaining' (one_write_done) until
1387 * after checking if we need to go around again.
1388 */
NeilBrowna35e63e2008-03-04 14:29:29 -08001389
NeilBrownd4432c22011-07-28 11:39:24 +10001390 if (sectors_handled < (bio->bi_size >> 9)) {
NeilBrown079fa162011-09-10 17:21:23 +10001391 one_write_done(r10_bio);
NeilBrown5e570282011-07-28 11:39:25 +10001392 /* We need another r10_bio. It has already been counted
NeilBrownd4432c22011-07-28 11:39:24 +10001393 * in bio->bi_phys_segments.
1394 */
1395 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1396
1397 r10_bio->master_bio = bio;
1398 r10_bio->sectors = (bio->bi_size >> 9) - sectors_handled;
1399
1400 r10_bio->mddev = mddev;
1401 r10_bio->sector = bio->bi_sector + sectors_handled;
1402 r10_bio->state = 0;
1403 goto retry_write;
1404 }
NeilBrown079fa162011-09-10 17:21:23 +10001405 one_write_done(r10_bio);
1406
1407 /* In case raid10d snuck in to freeze_array */
1408 wake_up(&conf->wait_barrier);
NeilBrownd4432c22011-07-28 11:39:24 +10001409
NeilBrownc3b328a2011-04-18 18:25:43 +10001410 if (do_sync || !mddev->bitmap || !plugged)
Lars Ellenberge3881a62007-01-10 23:15:37 -08001411 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
NeilBrownfd01b882011-10-11 16:47:53 +11001414static void status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
NeilBrowne879a872011-10-11 16:49:02 +11001416 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 int i;
1418
NeilBrown5cf00fc2012-05-21 09:28:20 +10001419 if (conf->geo.near_copies < conf->geo.raid_disks)
Andre Noll9d8f0362009-06-18 08:45:01 +10001420 seq_printf(seq, " %dK chunks", mddev->chunk_sectors / 2);
NeilBrown5cf00fc2012-05-21 09:28:20 +10001421 if (conf->geo.near_copies > 1)
1422 seq_printf(seq, " %d near-copies", conf->geo.near_copies);
1423 if (conf->geo.far_copies > 1) {
1424 if (conf->geo.far_offset)
1425 seq_printf(seq, " %d offset-copies", conf->geo.far_copies);
NeilBrownc93983b2006-06-26 00:27:41 -07001426 else
NeilBrown5cf00fc2012-05-21 09:28:20 +10001427 seq_printf(seq, " %d far-copies", conf->geo.far_copies);
NeilBrownc93983b2006-06-26 00:27:41 -07001428 }
NeilBrown5cf00fc2012-05-21 09:28:20 +10001429 seq_printf(seq, " [%d/%d] [", conf->geo.raid_disks,
1430 conf->geo.raid_disks - mddev->degraded);
1431 for (i = 0; i < conf->geo.raid_disks; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 seq_printf(seq, "%s",
1433 conf->mirrors[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08001434 test_bit(In_sync, &conf->mirrors[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 seq_printf(seq, "]");
1436}
1437
NeilBrown700c7212011-07-27 11:00:36 +10001438/* check if there are enough drives for
1439 * every block to appear on atleast one.
1440 * Don't consider the device numbered 'ignore'
1441 * as we might be about to remove it.
1442 */
NeilBrownf8c9e742012-05-21 09:28:33 +10001443static int _enough(struct r10conf *conf, struct geom *geo, int ignore)
NeilBrown700c7212011-07-27 11:00:36 +10001444{
1445 int first = 0;
1446
1447 do {
1448 int n = conf->copies;
1449 int cnt = 0;
1450 while (n--) {
1451 if (conf->mirrors[first].rdev &&
1452 first != ignore)
1453 cnt++;
NeilBrownf8c9e742012-05-21 09:28:33 +10001454 first = (first+1) % geo->raid_disks;
NeilBrown700c7212011-07-27 11:00:36 +10001455 }
1456 if (cnt == 0)
1457 return 0;
1458 } while (first != 0);
1459 return 1;
1460}
1461
NeilBrownf8c9e742012-05-21 09:28:33 +10001462static int enough(struct r10conf *conf, int ignore)
1463{
1464 return _enough(conf, &conf->geo, ignore) &&
1465 _enough(conf, &conf->prev, ignore);
1466}
1467
NeilBrownfd01b882011-10-11 16:47:53 +11001468static void error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
1470 char b[BDEVNAME_SIZE];
NeilBrowne879a872011-10-11 16:49:02 +11001471 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 /*
1474 * If it is not operational, then we have already marked it as dead
1475 * else if it is the last working disks, ignore the error, let the
1476 * next level up know.
1477 * else mark the drive as failed
1478 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001479 if (test_bit(In_sync, &rdev->flags)
NeilBrown700c7212011-07-27 11:00:36 +10001480 && !enough(conf, rdev->raid_disk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 /*
1482 * Don't fail the drive, just return an IO error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 */
1484 return;
NeilBrownc04be0a2006-10-03 01:15:53 -07001485 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1486 unsigned long flags;
1487 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001489 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 /*
1491 * if recovery is running, make sure it aborts.
1492 */
NeilBrowndfc70642008-05-23 13:04:39 -07001493 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 }
NeilBrownde393cd2011-07-28 11:31:48 +10001495 set_bit(Blocked, &rdev->flags);
NeilBrownb2d444d2005-11-08 21:39:31 -08001496 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b422006-10-03 01:15:46 -07001497 set_bit(MD_CHANGE_DEVS, &mddev->flags);
Joe Perches067032b2011-01-14 09:14:33 +11001498 printk(KERN_ALERT
1499 "md/raid10:%s: Disk failure on %s, disabling device.\n"
1500 "md/raid10:%s: Operation continuing on %d devices.\n",
NeilBrown128595e2010-05-03 14:47:14 +10001501 mdname(mddev), bdevname(rdev->bdev, b),
NeilBrown5cf00fc2012-05-21 09:28:20 +10001502 mdname(mddev), conf->geo.raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
NeilBrowne879a872011-10-11 16:49:02 +11001505static void print_conf(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
1507 int i;
NeilBrown0f6d02d2011-10-11 16:48:46 +11001508 struct mirror_info *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
NeilBrown128595e2010-05-03 14:47:14 +10001510 printk(KERN_DEBUG "RAID10 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (!conf) {
NeilBrown128595e2010-05-03 14:47:14 +10001512 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 return;
1514 }
NeilBrown5cf00fc2012-05-21 09:28:20 +10001515 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->geo.raid_disks - conf->mddev->degraded,
1516 conf->geo.raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
NeilBrown5cf00fc2012-05-21 09:28:20 +10001518 for (i = 0; i < conf->geo.raid_disks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 char b[BDEVNAME_SIZE];
1520 tmp = conf->mirrors + i;
1521 if (tmp->rdev)
NeilBrown128595e2010-05-03 14:47:14 +10001522 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownb2d444d2005-11-08 21:39:31 -08001523 i, !test_bit(In_sync, &tmp->rdev->flags),
1524 !test_bit(Faulty, &tmp->rdev->flags),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 bdevname(tmp->rdev->bdev,b));
1526 }
1527}
1528
NeilBrowne879a872011-10-11 16:49:02 +11001529static void close_sync(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
NeilBrown0a27ec92006-01-06 00:20:13 -08001531 wait_barrier(conf);
1532 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 mempool_destroy(conf->r10buf_pool);
1535 conf->r10buf_pool = NULL;
1536}
1537
NeilBrownfd01b882011-10-11 16:47:53 +11001538static int raid10_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
1540 int i;
NeilBrowne879a872011-10-11 16:49:02 +11001541 struct r10conf *conf = mddev->private;
NeilBrown0f6d02d2011-10-11 16:48:46 +11001542 struct mirror_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10001543 int count = 0;
1544 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 /*
1547 * Find all non-in_sync disks within the RAID10 configuration
1548 * and mark them in_sync
1549 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10001550 for (i = 0; i < conf->geo.raid_disks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 tmp = conf->mirrors + i;
NeilBrown4ca40c22011-12-23 10:17:55 +11001552 if (tmp->replacement
1553 && tmp->replacement->recovery_offset == MaxSector
1554 && !test_bit(Faulty, &tmp->replacement->flags)
1555 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
1556 /* Replacement has just become active */
1557 if (!tmp->rdev
1558 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
1559 count++;
1560 if (tmp->rdev) {
1561 /* Replaced device not technically faulty,
1562 * but we need to be sure it gets removed
1563 * and never re-added.
1564 */
1565 set_bit(Faulty, &tmp->rdev->flags);
1566 sysfs_notify_dirent_safe(
1567 tmp->rdev->sysfs_state);
1568 }
1569 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
1570 } else if (tmp->rdev
1571 && !test_bit(Faulty, &tmp->rdev->flags)
1572 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10001573 count++;
Adrian Drzewieckie6ffbcb2010-08-18 11:49:02 +10001574 sysfs_notify_dirent(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
1576 }
NeilBrown6b965622010-08-18 11:56:59 +10001577 spin_lock_irqsave(&conf->device_lock, flags);
1578 mddev->degraded -= count;
1579 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 print_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10001582 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583}
1584
1585
NeilBrownfd01b882011-10-11 16:47:53 +11001586static int raid10_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
NeilBrowne879a872011-10-11 16:49:02 +11001588 struct r10conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001589 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 int mirror;
Neil Brown6c2fce22008-06-28 08:31:31 +10001591 int first = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +10001592 int last = conf->geo.raid_disks - 1;
NeilBrown050b6612012-03-19 12:46:39 +11001593 struct request_queue *q = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
1595 if (mddev->recovery_cp < MaxSector)
1596 /* only hot-add to in-sync arrays, as recovery is
1597 * very different from resync
1598 */
Neil Brown199050e2008-06-28 08:31:33 +10001599 return -EBUSY;
NeilBrownf8c9e742012-05-21 09:28:33 +10001600 if (rdev->saved_raid_disk < 0 && !_enough(conf, &conf->prev, -1))
Neil Brown199050e2008-06-28 08:31:33 +10001601 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
NeilBrowna53a6c82008-11-06 17:28:20 +11001603 if (rdev->raid_disk >= 0)
Neil Brown6c2fce22008-06-28 08:31:31 +10001604 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
NeilBrown050b6612012-03-19 12:46:39 +11001606 if (q->merge_bvec_fn) {
1607 set_bit(Unmerged, &rdev->flags);
1608 mddev->merge_check_needed = 1;
1609 }
1610
Namhyung Kim2c4193d2011-07-18 17:38:43 +10001611 if (rdev->saved_raid_disk >= first &&
NeilBrown6cce3b22006-01-06 00:20:16 -08001612 conf->mirrors[rdev->saved_raid_disk].rdev == NULL)
1613 mirror = rdev->saved_raid_disk;
1614 else
Neil Brown6c2fce22008-06-28 08:31:31 +10001615 mirror = first;
NeilBrown2bb77732011-07-27 11:00:36 +10001616 for ( ; mirror <= last ; mirror++) {
NeilBrown0f6d02d2011-10-11 16:48:46 +11001617 struct mirror_info *p = &conf->mirrors[mirror];
NeilBrown2bb77732011-07-27 11:00:36 +10001618 if (p->recovery_disabled == mddev->recovery_disabled)
1619 continue;
NeilBrownb7044d42011-12-23 10:17:56 +11001620 if (p->rdev) {
1621 if (!test_bit(WantReplacement, &p->rdev->flags) ||
1622 p->replacement != NULL)
1623 continue;
1624 clear_bit(In_sync, &rdev->flags);
1625 set_bit(Replacement, &rdev->flags);
1626 rdev->raid_disk = mirror;
1627 err = 0;
1628 disk_stack_limits(mddev->gendisk, rdev->bdev,
1629 rdev->data_offset << 9);
NeilBrownb7044d42011-12-23 10:17:56 +11001630 conf->fullsync = 1;
1631 rcu_assign_pointer(p->replacement, rdev);
1632 break;
1633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
NeilBrown2bb77732011-07-27 11:00:36 +10001635 disk_stack_limits(mddev->gendisk, rdev->bdev,
1636 rdev->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
NeilBrown2bb77732011-07-27 11:00:36 +10001638 p->head_position = 0;
NeilBrownd890fa22011-10-26 11:54:39 +11001639 p->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown2bb77732011-07-27 11:00:36 +10001640 rdev->raid_disk = mirror;
1641 err = 0;
1642 if (rdev->saved_raid_disk != mirror)
1643 conf->fullsync = 1;
1644 rcu_assign_pointer(p->rdev, rdev);
1645 break;
1646 }
NeilBrown050b6612012-03-19 12:46:39 +11001647 if (err == 0 && test_bit(Unmerged, &rdev->flags)) {
1648 /* Some requests might not have seen this new
1649 * merge_bvec_fn. We must wait for them to complete
1650 * before merging the device fully.
1651 * First we make sure any code which has tested
1652 * our function has submitted the request, then
1653 * we wait for all outstanding requests to complete.
1654 */
1655 synchronize_sched();
1656 raise_barrier(conf, 0);
1657 lower_barrier(conf);
1658 clear_bit(Unmerged, &rdev->flags);
1659 }
Andre Nollac5e7112009-08-03 10:59:47 +10001660 md_integrity_add_rdev(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001662 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663}
1664
NeilBrownb8321b62011-12-23 10:17:51 +11001665static int raid10_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
NeilBrowne879a872011-10-11 16:49:02 +11001667 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11001669 int number = rdev->raid_disk;
NeilBrownc8ab9032011-12-23 10:17:54 +11001670 struct md_rdev **rdevp;
1671 struct mirror_info *p = conf->mirrors + number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 print_conf(conf);
NeilBrownc8ab9032011-12-23 10:17:54 +11001674 if (rdev == p->rdev)
1675 rdevp = &p->rdev;
1676 else if (rdev == p->replacement)
1677 rdevp = &p->replacement;
1678 else
1679 return 0;
1680
1681 if (test_bit(In_sync, &rdev->flags) ||
1682 atomic_read(&rdev->nr_pending)) {
1683 err = -EBUSY;
1684 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
NeilBrownc8ab9032011-12-23 10:17:54 +11001686 /* Only remove faulty devices if recovery
1687 * is not possible.
1688 */
1689 if (!test_bit(Faulty, &rdev->flags) &&
1690 mddev->recovery_disabled != p->recovery_disabled &&
NeilBrown4ca40c22011-12-23 10:17:55 +11001691 (!p->replacement || p->replacement == rdev) &&
NeilBrownc8ab9032011-12-23 10:17:54 +11001692 enough(conf, -1)) {
1693 err = -EBUSY;
1694 goto abort;
1695 }
1696 *rdevp = NULL;
1697 synchronize_rcu();
1698 if (atomic_read(&rdev->nr_pending)) {
1699 /* lost the race, try later */
1700 err = -EBUSY;
1701 *rdevp = rdev;
1702 goto abort;
NeilBrown4ca40c22011-12-23 10:17:55 +11001703 } else if (p->replacement) {
1704 /* We must have just cleared 'rdev' */
1705 p->rdev = p->replacement;
1706 clear_bit(Replacement, &p->replacement->flags);
1707 smp_mb(); /* Make sure other CPUs may see both as identical
1708 * but will never see neither -- if they are careful.
1709 */
1710 p->replacement = NULL;
1711 clear_bit(WantReplacement, &rdev->flags);
1712 } else
1713 /* We might have just remove the Replacement as faulty
1714 * Clear the flag just in case
1715 */
1716 clear_bit(WantReplacement, &rdev->flags);
1717
NeilBrownc8ab9032011-12-23 10:17:54 +11001718 err = md_integrity_register(mddev);
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720abort:
1721
1722 print_conf(conf);
1723 return err;
1724}
1725
1726
NeilBrown6712ecf2007-09-27 12:47:43 +02001727static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
NeilBrown9f2c9d12011-10-11 16:48:43 +11001729 struct r10bio *r10_bio = bio->bi_private;
NeilBrowne879a872011-10-11 16:49:02 +11001730 struct r10conf *conf = r10_bio->mddev->private;
Namhyung Kim778ca012011-07-18 17:38:47 +10001731 int d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
NeilBrown69335ef2011-12-23 10:17:54 +11001733 d = find_bio_disk(conf, r10_bio, bio, NULL, NULL);
NeilBrown0eb3ff12006-01-06 00:20:29 -08001734
1735 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
1736 set_bit(R10BIO_Uptodate, &r10_bio->state);
NeilBrowne684e412011-07-28 11:39:25 +10001737 else
1738 /* The write handler will notice the lack of
1739 * R10BIO_Uptodate and record any errors etc
1740 */
NeilBrown4dbcdc72006-01-06 00:20:52 -08001741 atomic_add(r10_bio->sectors,
1742 &conf->mirrors[d].rdev->corrected_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 /* for reconstruct, we always reschedule after a read.
1745 * for resync, only after all reads
1746 */
NeilBrown73d5c382009-02-25 13:18:47 +11001747 rdev_dec_pending(conf->mirrors[d].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 if (test_bit(R10BIO_IsRecover, &r10_bio->state) ||
1749 atomic_dec_and_test(&r10_bio->remaining)) {
1750 /* we have read all the blocks,
1751 * do the comparison in process context in raid10d
1752 */
1753 reschedule_retry(r10_bio);
1754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755}
1756
NeilBrown9f2c9d12011-10-11 16:48:43 +11001757static void end_sync_request(struct r10bio *r10_bio)
NeilBrown5e570282011-07-28 11:39:25 +10001758{
NeilBrownfd01b882011-10-11 16:47:53 +11001759 struct mddev *mddev = r10_bio->mddev;
NeilBrown5e570282011-07-28 11:39:25 +10001760
1761 while (atomic_dec_and_test(&r10_bio->remaining)) {
1762 if (r10_bio->master_bio == NULL) {
1763 /* the primary of several recovery bios */
1764 sector_t s = r10_bio->sectors;
1765 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
1766 test_bit(R10BIO_WriteError, &r10_bio->state))
1767 reschedule_retry(r10_bio);
1768 else
1769 put_buf(r10_bio);
1770 md_done_sync(mddev, s, 1);
1771 break;
1772 } else {
NeilBrown9f2c9d12011-10-11 16:48:43 +11001773 struct r10bio *r10_bio2 = (struct r10bio *)r10_bio->master_bio;
NeilBrown5e570282011-07-28 11:39:25 +10001774 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
1775 test_bit(R10BIO_WriteError, &r10_bio->state))
1776 reschedule_retry(r10_bio);
1777 else
1778 put_buf(r10_bio);
1779 r10_bio = r10_bio2;
1780 }
1781 }
1782}
1783
NeilBrown6712ecf2007-09-27 12:47:43 +02001784static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785{
1786 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9f2c9d12011-10-11 16:48:43 +11001787 struct r10bio *r10_bio = bio->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11001788 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11001789 struct r10conf *conf = mddev->private;
Namhyung Kim778ca012011-07-18 17:38:47 +10001790 int d;
NeilBrown749c55e2011-07-28 11:39:24 +10001791 sector_t first_bad;
1792 int bad_sectors;
1793 int slot;
NeilBrown9ad1aef2011-12-23 10:17:55 +11001794 int repl;
NeilBrown4ca40c22011-12-23 10:17:55 +11001795 struct md_rdev *rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
NeilBrown9ad1aef2011-12-23 10:17:55 +11001797 d = find_bio_disk(conf, r10_bio, bio, &slot, &repl);
1798 if (repl)
1799 rdev = conf->mirrors[d].replacement;
NeilBrown547414d2012-03-13 11:21:20 +11001800 else
NeilBrown9ad1aef2011-12-23 10:17:55 +11001801 rdev = conf->mirrors[d].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
NeilBrown1a0b7cd2011-07-28 11:39:25 +10001803 if (!uptodate) {
NeilBrown9ad1aef2011-12-23 10:17:55 +11001804 if (repl)
1805 md_error(mddev, rdev);
1806 else {
1807 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11001808 if (!test_and_set_bit(WantReplacement, &rdev->flags))
1809 set_bit(MD_RECOVERY_NEEDED,
1810 &rdev->mddev->recovery);
NeilBrown9ad1aef2011-12-23 10:17:55 +11001811 set_bit(R10BIO_WriteError, &r10_bio->state);
1812 }
1813 } else if (is_badblock(rdev,
NeilBrown749c55e2011-07-28 11:39:24 +10001814 r10_bio->devs[slot].addr,
1815 r10_bio->sectors,
1816 &first_bad, &bad_sectors))
1817 set_bit(R10BIO_MadeGood, &r10_bio->state);
NeilBrowndfc70642008-05-23 13:04:39 -07001818
NeilBrown9ad1aef2011-12-23 10:17:55 +11001819 rdev_dec_pending(rdev, mddev);
NeilBrown5e570282011-07-28 11:39:25 +10001820
1821 end_sync_request(r10_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822}
1823
1824/*
1825 * Note: sync and recover and handled very differently for raid10
1826 * This code is for resync.
1827 * For resync, we read through virtual addresses and read all blocks.
1828 * If there is any error, we schedule a write. The lowest numbered
1829 * drive is authoritative.
1830 * However requests come for physical address, so we need to map.
1831 * For every physical address there are raid_disks/copies virtual addresses,
1832 * which is always are least one, but is not necessarly an integer.
1833 * This means that a physical address can span multiple chunks, so we may
1834 * have to submit multiple io requests for a single sync request.
1835 */
1836/*
1837 * We check if all blocks are in-sync and only write to blocks that
1838 * aren't in sync
1839 */
NeilBrown9f2c9d12011-10-11 16:48:43 +11001840static void sync_request_write(struct mddev *mddev, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841{
NeilBrowne879a872011-10-11 16:49:02 +11001842 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 int i, first;
1844 struct bio *tbio, *fbio;
majianpengf4380a92012-04-12 16:04:47 +10001845 int vcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847 atomic_set(&r10_bio->remaining, 1);
1848
1849 /* find the first device with a block */
1850 for (i=0; i<conf->copies; i++)
1851 if (test_bit(BIO_UPTODATE, &r10_bio->devs[i].bio->bi_flags))
1852 break;
1853
1854 if (i == conf->copies)
1855 goto done;
1856
1857 first = i;
1858 fbio = r10_bio->devs[i].bio;
1859
majianpengf4380a92012-04-12 16:04:47 +10001860 vcnt = (r10_bio->sectors + (PAGE_SIZE >> 9) - 1) >> (PAGE_SHIFT - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 /* now find blocks with errors */
NeilBrown0eb3ff12006-01-06 00:20:29 -08001862 for (i=0 ; i < conf->copies ; i++) {
1863 int j, d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 tbio = r10_bio->devs[i].bio;
NeilBrown0eb3ff12006-01-06 00:20:29 -08001866
1867 if (tbio->bi_end_io != end_sync_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 continue;
NeilBrown0eb3ff12006-01-06 00:20:29 -08001869 if (i == first)
1870 continue;
1871 if (test_bit(BIO_UPTODATE, &r10_bio->devs[i].bio->bi_flags)) {
1872 /* We know that the bi_io_vec layout is the same for
1873 * both 'first' and 'i', so we just compare them.
1874 * All vec entries are PAGE_SIZE;
1875 */
1876 for (j = 0; j < vcnt; j++)
1877 if (memcmp(page_address(fbio->bi_io_vec[j].bv_page),
1878 page_address(tbio->bi_io_vec[j].bv_page),
NeilBrown5020ad72012-04-02 01:39:05 +10001879 fbio->bi_io_vec[j].bv_len))
NeilBrown0eb3ff12006-01-06 00:20:29 -08001880 break;
1881 if (j == vcnt)
1882 continue;
1883 mddev->resync_mismatches += r10_bio->sectors;
NeilBrownf84ee362011-07-28 11:39:25 +10001884 if (test_bit(MD_RECOVERY_CHECK, &mddev->recovery))
1885 /* Don't fix anything. */
1886 continue;
NeilBrown0eb3ff12006-01-06 00:20:29 -08001887 }
NeilBrownf84ee362011-07-28 11:39:25 +10001888 /* Ok, we need to write this bio, either to correct an
1889 * inconsistency or to correct an unreadable block.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 * First we need to fixup bv_offset, bv_len and
1891 * bi_vecs, as the read request might have corrupted these
1892 */
1893 tbio->bi_vcnt = vcnt;
1894 tbio->bi_size = r10_bio->sectors << 9;
1895 tbio->bi_idx = 0;
1896 tbio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 tbio->bi_flags &= ~(BIO_POOL_MASK - 1);
1898 tbio->bi_flags |= 1 << BIO_UPTODATE;
1899 tbio->bi_next = NULL;
1900 tbio->bi_rw = WRITE;
1901 tbio->bi_private = r10_bio;
1902 tbio->bi_sector = r10_bio->devs[i].addr;
1903
1904 for (j=0; j < vcnt ; j++) {
1905 tbio->bi_io_vec[j].bv_offset = 0;
1906 tbio->bi_io_vec[j].bv_len = PAGE_SIZE;
1907
1908 memcpy(page_address(tbio->bi_io_vec[j].bv_page),
1909 page_address(fbio->bi_io_vec[j].bv_page),
1910 PAGE_SIZE);
1911 }
1912 tbio->bi_end_io = end_sync_write;
1913
1914 d = r10_bio->devs[i].devnum;
1915 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
1916 atomic_inc(&r10_bio->remaining);
1917 md_sync_acct(conf->mirrors[d].rdev->bdev, tbio->bi_size >> 9);
1918
1919 tbio->bi_sector += conf->mirrors[d].rdev->data_offset;
1920 tbio->bi_bdev = conf->mirrors[d].rdev->bdev;
1921 generic_make_request(tbio);
1922 }
1923
NeilBrown9ad1aef2011-12-23 10:17:55 +11001924 /* Now write out to any replacement devices
1925 * that are active
1926 */
1927 for (i = 0; i < conf->copies; i++) {
1928 int j, d;
NeilBrown9ad1aef2011-12-23 10:17:55 +11001929
1930 tbio = r10_bio->devs[i].repl_bio;
1931 if (!tbio || !tbio->bi_end_io)
1932 continue;
1933 if (r10_bio->devs[i].bio->bi_end_io != end_sync_write
1934 && r10_bio->devs[i].bio != fbio)
1935 for (j = 0; j < vcnt; j++)
1936 memcpy(page_address(tbio->bi_io_vec[j].bv_page),
1937 page_address(fbio->bi_io_vec[j].bv_page),
1938 PAGE_SIZE);
1939 d = r10_bio->devs[i].devnum;
1940 atomic_inc(&r10_bio->remaining);
1941 md_sync_acct(conf->mirrors[d].replacement->bdev,
1942 tbio->bi_size >> 9);
1943 generic_make_request(tbio);
1944 }
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946done:
1947 if (atomic_dec_and_test(&r10_bio->remaining)) {
1948 md_done_sync(mddev, r10_bio->sectors, 1);
1949 put_buf(r10_bio);
1950 }
1951}
1952
1953/*
1954 * Now for the recovery code.
1955 * Recovery happens across physical sectors.
1956 * We recover all non-is_sync drives by finding the virtual address of
1957 * each, and then choose a working drive that also has that virt address.
1958 * There is a separate r10_bio for each non-in_sync drive.
1959 * Only the first two slots are in use. The first for reading,
1960 * The second for writing.
1961 *
1962 */
NeilBrown9f2c9d12011-10-11 16:48:43 +11001963static void fix_recovery_read_error(struct r10bio *r10_bio)
NeilBrown5e570282011-07-28 11:39:25 +10001964{
1965 /* We got a read error during recovery.
1966 * We repeat the read in smaller page-sized sections.
1967 * If a read succeeds, write it to the new device or record
1968 * a bad block if we cannot.
1969 * If a read fails, record a bad block on both old and
1970 * new devices.
1971 */
NeilBrownfd01b882011-10-11 16:47:53 +11001972 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11001973 struct r10conf *conf = mddev->private;
NeilBrown5e570282011-07-28 11:39:25 +10001974 struct bio *bio = r10_bio->devs[0].bio;
1975 sector_t sect = 0;
1976 int sectors = r10_bio->sectors;
1977 int idx = 0;
1978 int dr = r10_bio->devs[0].devnum;
1979 int dw = r10_bio->devs[1].devnum;
1980
1981 while (sectors) {
1982 int s = sectors;
NeilBrown3cb03002011-10-11 16:45:26 +11001983 struct md_rdev *rdev;
NeilBrown5e570282011-07-28 11:39:25 +10001984 sector_t addr;
1985 int ok;
1986
1987 if (s > (PAGE_SIZE>>9))
1988 s = PAGE_SIZE >> 9;
1989
1990 rdev = conf->mirrors[dr].rdev;
1991 addr = r10_bio->devs[0].addr + sect,
1992 ok = sync_page_io(rdev,
1993 addr,
1994 s << 9,
1995 bio->bi_io_vec[idx].bv_page,
1996 READ, false);
1997 if (ok) {
1998 rdev = conf->mirrors[dw].rdev;
1999 addr = r10_bio->devs[1].addr + sect;
2000 ok = sync_page_io(rdev,
2001 addr,
2002 s << 9,
2003 bio->bi_io_vec[idx].bv_page,
2004 WRITE, false);
NeilBrownb7044d42011-12-23 10:17:56 +11002005 if (!ok) {
NeilBrown5e570282011-07-28 11:39:25 +10002006 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11002007 if (!test_and_set_bit(WantReplacement,
2008 &rdev->flags))
2009 set_bit(MD_RECOVERY_NEEDED,
2010 &rdev->mddev->recovery);
2011 }
NeilBrown5e570282011-07-28 11:39:25 +10002012 }
2013 if (!ok) {
2014 /* We don't worry if we cannot set a bad block -
2015 * it really is bad so there is no loss in not
2016 * recording it yet
2017 */
2018 rdev_set_badblocks(rdev, addr, s, 0);
2019
2020 if (rdev != conf->mirrors[dw].rdev) {
2021 /* need bad block on destination too */
NeilBrown3cb03002011-10-11 16:45:26 +11002022 struct md_rdev *rdev2 = conf->mirrors[dw].rdev;
NeilBrown5e570282011-07-28 11:39:25 +10002023 addr = r10_bio->devs[1].addr + sect;
2024 ok = rdev_set_badblocks(rdev2, addr, s, 0);
2025 if (!ok) {
2026 /* just abort the recovery */
2027 printk(KERN_NOTICE
2028 "md/raid10:%s: recovery aborted"
2029 " due to read error\n",
2030 mdname(mddev));
2031
2032 conf->mirrors[dw].recovery_disabled
2033 = mddev->recovery_disabled;
2034 set_bit(MD_RECOVERY_INTR,
2035 &mddev->recovery);
2036 break;
2037 }
2038 }
2039 }
2040
2041 sectors -= s;
2042 sect += s;
2043 idx++;
2044 }
2045}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
NeilBrown9f2c9d12011-10-11 16:48:43 +11002047static void recovery_request_write(struct mddev *mddev, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
NeilBrowne879a872011-10-11 16:49:02 +11002049 struct r10conf *conf = mddev->private;
Namhyung Kimc65060a2011-07-18 17:38:49 +10002050 int d;
NeilBrown24afd802011-12-23 10:17:55 +11002051 struct bio *wbio, *wbio2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
NeilBrown5e570282011-07-28 11:39:25 +10002053 if (!test_bit(R10BIO_Uptodate, &r10_bio->state)) {
2054 fix_recovery_read_error(r10_bio);
2055 end_sync_request(r10_bio);
2056 return;
2057 }
2058
Namhyung Kimc65060a2011-07-18 17:38:49 +10002059 /*
2060 * share the pages with the first bio
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 * and submit the write request
2062 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 d = r10_bio->devs[1].devnum;
NeilBrown24afd802011-12-23 10:17:55 +11002064 wbio = r10_bio->devs[1].bio;
2065 wbio2 = r10_bio->devs[1].repl_bio;
2066 if (wbio->bi_end_io) {
2067 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
2068 md_sync_acct(conf->mirrors[d].rdev->bdev, wbio->bi_size >> 9);
2069 generic_make_request(wbio);
2070 }
2071 if (wbio2 && wbio2->bi_end_io) {
2072 atomic_inc(&conf->mirrors[d].replacement->nr_pending);
2073 md_sync_acct(conf->mirrors[d].replacement->bdev,
2074 wbio2->bi_size >> 9);
2075 generic_make_request(wbio2);
2076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077}
2078
2079
2080/*
Robert Becker1e509152009-12-14 12:49:58 +11002081 * Used by fix_read_error() to decay the per rdev read_errors.
2082 * We halve the read error count for every hour that has elapsed
2083 * since the last recorded read error.
2084 *
2085 */
NeilBrownfd01b882011-10-11 16:47:53 +11002086static void check_decay_read_errors(struct mddev *mddev, struct md_rdev *rdev)
Robert Becker1e509152009-12-14 12:49:58 +11002087{
2088 struct timespec cur_time_mon;
2089 unsigned long hours_since_last;
2090 unsigned int read_errors = atomic_read(&rdev->read_errors);
2091
2092 ktime_get_ts(&cur_time_mon);
2093
2094 if (rdev->last_read_error.tv_sec == 0 &&
2095 rdev->last_read_error.tv_nsec == 0) {
2096 /* first time we've seen a read error */
2097 rdev->last_read_error = cur_time_mon;
2098 return;
2099 }
2100
2101 hours_since_last = (cur_time_mon.tv_sec -
2102 rdev->last_read_error.tv_sec) / 3600;
2103
2104 rdev->last_read_error = cur_time_mon;
2105
2106 /*
2107 * if hours_since_last is > the number of bits in read_errors
2108 * just set read errors to 0. We do this to avoid
2109 * overflowing the shift of read_errors by hours_since_last.
2110 */
2111 if (hours_since_last >= 8 * sizeof(read_errors))
2112 atomic_set(&rdev->read_errors, 0);
2113 else
2114 atomic_set(&rdev->read_errors, read_errors >> hours_since_last);
2115}
2116
NeilBrown3cb03002011-10-11 16:45:26 +11002117static int r10_sync_page_io(struct md_rdev *rdev, sector_t sector,
NeilBrown58c54fc2011-07-28 11:39:25 +10002118 int sectors, struct page *page, int rw)
2119{
2120 sector_t first_bad;
2121 int bad_sectors;
2122
2123 if (is_badblock(rdev, sector, sectors, &first_bad, &bad_sectors)
2124 && (rw == READ || test_bit(WriteErrorSeen, &rdev->flags)))
2125 return -1;
2126 if (sync_page_io(rdev, sector, sectors << 9, page, rw, false))
2127 /* success */
2128 return 1;
NeilBrownb7044d42011-12-23 10:17:56 +11002129 if (rw == WRITE) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002130 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11002131 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2132 set_bit(MD_RECOVERY_NEEDED,
2133 &rdev->mddev->recovery);
2134 }
NeilBrown58c54fc2011-07-28 11:39:25 +10002135 /* need to record an error - either for the block or the device */
2136 if (!rdev_set_badblocks(rdev, sector, sectors, 0))
2137 md_error(rdev->mddev, rdev);
2138 return 0;
2139}
2140
Robert Becker1e509152009-12-14 12:49:58 +11002141/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 * This is a kernel thread which:
2143 *
2144 * 1. Retries failed read operations on working mirrors.
2145 * 2. Updates the raid superblock when problems encounter.
NeilBrown6814d532006-10-03 01:15:45 -07002146 * 3. Performs writes following reads for array synchronising.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 */
2148
NeilBrowne879a872011-10-11 16:49:02 +11002149static void fix_read_error(struct r10conf *conf, struct mddev *mddev, struct r10bio *r10_bio)
NeilBrown6814d532006-10-03 01:15:45 -07002150{
2151 int sect = 0; /* Offset from r10_bio->sector */
2152 int sectors = r10_bio->sectors;
NeilBrown3cb03002011-10-11 16:45:26 +11002153 struct md_rdev*rdev;
Robert Becker1e509152009-12-14 12:49:58 +11002154 int max_read_errors = atomic_read(&mddev->max_corr_read_errors);
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002155 int d = r10_bio->devs[r10_bio->read_slot].devnum;
Robert Becker1e509152009-12-14 12:49:58 +11002156
NeilBrown7c4e06f2011-05-11 14:53:17 +10002157 /* still own a reference to this rdev, so it cannot
2158 * have been cleared recently.
2159 */
2160 rdev = conf->mirrors[d].rdev;
Robert Becker1e509152009-12-14 12:49:58 +11002161
NeilBrown7c4e06f2011-05-11 14:53:17 +10002162 if (test_bit(Faulty, &rdev->flags))
2163 /* drive has already been failed, just ignore any
2164 more fix_read_error() attempts */
2165 return;
2166
2167 check_decay_read_errors(mddev, rdev);
2168 atomic_inc(&rdev->read_errors);
2169 if (atomic_read(&rdev->read_errors) > max_read_errors) {
2170 char b[BDEVNAME_SIZE];
Robert Becker1e509152009-12-14 12:49:58 +11002171 bdevname(rdev->bdev, b);
2172
NeilBrown7c4e06f2011-05-11 14:53:17 +10002173 printk(KERN_NOTICE
2174 "md/raid10:%s: %s: Raid device exceeded "
2175 "read_error threshold [cur %d:max %d]\n",
2176 mdname(mddev), b,
2177 atomic_read(&rdev->read_errors), max_read_errors);
2178 printk(KERN_NOTICE
2179 "md/raid10:%s: %s: Failing raid device\n",
2180 mdname(mddev), b);
2181 md_error(mddev, conf->mirrors[d].rdev);
NeilBrownfae8cc5e2012-02-14 11:10:10 +11002182 r10_bio->devs[r10_bio->read_slot].bio = IO_BLOCKED;
NeilBrown7c4e06f2011-05-11 14:53:17 +10002183 return;
Robert Becker1e509152009-12-14 12:49:58 +11002184 }
Robert Becker1e509152009-12-14 12:49:58 +11002185
NeilBrown6814d532006-10-03 01:15:45 -07002186 while(sectors) {
2187 int s = sectors;
2188 int sl = r10_bio->read_slot;
2189 int success = 0;
2190 int start;
2191
2192 if (s > (PAGE_SIZE>>9))
2193 s = PAGE_SIZE >> 9;
2194
2195 rcu_read_lock();
2196 do {
NeilBrown8dbed5c2011-07-28 11:39:24 +10002197 sector_t first_bad;
2198 int bad_sectors;
2199
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002200 d = r10_bio->devs[sl].devnum;
NeilBrown6814d532006-10-03 01:15:45 -07002201 rdev = rcu_dereference(conf->mirrors[d].rdev);
2202 if (rdev &&
NeilBrown050b6612012-03-19 12:46:39 +11002203 !test_bit(Unmerged, &rdev->flags) &&
NeilBrown8dbed5c2011-07-28 11:39:24 +10002204 test_bit(In_sync, &rdev->flags) &&
2205 is_badblock(rdev, r10_bio->devs[sl].addr + sect, s,
2206 &first_bad, &bad_sectors) == 0) {
NeilBrown6814d532006-10-03 01:15:45 -07002207 atomic_inc(&rdev->nr_pending);
2208 rcu_read_unlock();
NeilBrown2b193362010-10-27 15:16:40 +11002209 success = sync_page_io(rdev,
NeilBrown6814d532006-10-03 01:15:45 -07002210 r10_bio->devs[sl].addr +
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11002211 sect,
NeilBrown6814d532006-10-03 01:15:45 -07002212 s<<9,
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11002213 conf->tmppage, READ, false);
NeilBrown6814d532006-10-03 01:15:45 -07002214 rdev_dec_pending(rdev, mddev);
2215 rcu_read_lock();
2216 if (success)
2217 break;
2218 }
2219 sl++;
2220 if (sl == conf->copies)
2221 sl = 0;
2222 } while (!success && sl != r10_bio->read_slot);
2223 rcu_read_unlock();
2224
2225 if (!success) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002226 /* Cannot read from anywhere, just mark the block
2227 * as bad on the first device to discourage future
2228 * reads.
2229 */
NeilBrown6814d532006-10-03 01:15:45 -07002230 int dn = r10_bio->devs[r10_bio->read_slot].devnum;
NeilBrown58c54fc2011-07-28 11:39:25 +10002231 rdev = conf->mirrors[dn].rdev;
2232
2233 if (!rdev_set_badblocks(
2234 rdev,
2235 r10_bio->devs[r10_bio->read_slot].addr
2236 + sect,
NeilBrownfae8cc5e2012-02-14 11:10:10 +11002237 s, 0)) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002238 md_error(mddev, rdev);
NeilBrownfae8cc5e2012-02-14 11:10:10 +11002239 r10_bio->devs[r10_bio->read_slot].bio
2240 = IO_BLOCKED;
2241 }
NeilBrown6814d532006-10-03 01:15:45 -07002242 break;
2243 }
2244
2245 start = sl;
2246 /* write it back and re-read */
2247 rcu_read_lock();
2248 while (sl != r10_bio->read_slot) {
Robert Becker67b8dc42009-12-14 12:49:57 +11002249 char b[BDEVNAME_SIZE];
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002250
NeilBrown6814d532006-10-03 01:15:45 -07002251 if (sl==0)
2252 sl = conf->copies;
2253 sl--;
2254 d = r10_bio->devs[sl].devnum;
2255 rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown1294b9c2011-07-28 11:39:23 +10002256 if (!rdev ||
NeilBrown050b6612012-03-19 12:46:39 +11002257 test_bit(Unmerged, &rdev->flags) ||
NeilBrown1294b9c2011-07-28 11:39:23 +10002258 !test_bit(In_sync, &rdev->flags))
2259 continue;
2260
2261 atomic_inc(&rdev->nr_pending);
2262 rcu_read_unlock();
NeilBrown58c54fc2011-07-28 11:39:25 +10002263 if (r10_sync_page_io(rdev,
2264 r10_bio->devs[sl].addr +
2265 sect,
2266 s<<9, conf->tmppage, WRITE)
NeilBrown1294b9c2011-07-28 11:39:23 +10002267 == 0) {
2268 /* Well, this device is dead */
2269 printk(KERN_NOTICE
2270 "md/raid10:%s: read correction "
2271 "write failed"
2272 " (%d sectors at %llu on %s)\n",
2273 mdname(mddev), s,
2274 (unsigned long long)(
NeilBrownf8c9e742012-05-21 09:28:33 +10002275 sect +
2276 choose_data_offset(r10_bio,
2277 rdev)),
NeilBrown1294b9c2011-07-28 11:39:23 +10002278 bdevname(rdev->bdev, b));
2279 printk(KERN_NOTICE "md/raid10:%s: %s: failing "
2280 "drive\n",
2281 mdname(mddev),
2282 bdevname(rdev->bdev, b));
NeilBrown6814d532006-10-03 01:15:45 -07002283 }
NeilBrown1294b9c2011-07-28 11:39:23 +10002284 rdev_dec_pending(rdev, mddev);
2285 rcu_read_lock();
NeilBrown6814d532006-10-03 01:15:45 -07002286 }
2287 sl = start;
2288 while (sl != r10_bio->read_slot) {
NeilBrown1294b9c2011-07-28 11:39:23 +10002289 char b[BDEVNAME_SIZE];
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002290
NeilBrown6814d532006-10-03 01:15:45 -07002291 if (sl==0)
2292 sl = conf->copies;
2293 sl--;
2294 d = r10_bio->devs[sl].devnum;
2295 rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown1294b9c2011-07-28 11:39:23 +10002296 if (!rdev ||
2297 !test_bit(In_sync, &rdev->flags))
2298 continue;
Robert Becker67b8dc42009-12-14 12:49:57 +11002299
NeilBrown1294b9c2011-07-28 11:39:23 +10002300 atomic_inc(&rdev->nr_pending);
2301 rcu_read_unlock();
NeilBrown58c54fc2011-07-28 11:39:25 +10002302 switch (r10_sync_page_io(rdev,
2303 r10_bio->devs[sl].addr +
2304 sect,
2305 s<<9, conf->tmppage,
2306 READ)) {
2307 case 0:
NeilBrown1294b9c2011-07-28 11:39:23 +10002308 /* Well, this device is dead */
2309 printk(KERN_NOTICE
2310 "md/raid10:%s: unable to read back "
2311 "corrected sectors"
2312 " (%d sectors at %llu on %s)\n",
2313 mdname(mddev), s,
2314 (unsigned long long)(
NeilBrownf8c9e742012-05-21 09:28:33 +10002315 sect +
2316 choose_data_offset(r10_bio, rdev)),
NeilBrown1294b9c2011-07-28 11:39:23 +10002317 bdevname(rdev->bdev, b));
2318 printk(KERN_NOTICE "md/raid10:%s: %s: failing "
2319 "drive\n",
2320 mdname(mddev),
2321 bdevname(rdev->bdev, b));
NeilBrown58c54fc2011-07-28 11:39:25 +10002322 break;
2323 case 1:
NeilBrown1294b9c2011-07-28 11:39:23 +10002324 printk(KERN_INFO
2325 "md/raid10:%s: read error corrected"
2326 " (%d sectors at %llu on %s)\n",
2327 mdname(mddev), s,
2328 (unsigned long long)(
NeilBrownf8c9e742012-05-21 09:28:33 +10002329 sect +
2330 choose_data_offset(r10_bio, rdev)),
NeilBrown1294b9c2011-07-28 11:39:23 +10002331 bdevname(rdev->bdev, b));
2332 atomic_add(s, &rdev->corrected_errors);
NeilBrown6814d532006-10-03 01:15:45 -07002333 }
NeilBrown1294b9c2011-07-28 11:39:23 +10002334
2335 rdev_dec_pending(rdev, mddev);
2336 rcu_read_lock();
NeilBrown6814d532006-10-03 01:15:45 -07002337 }
2338 rcu_read_unlock();
2339
2340 sectors -= s;
2341 sect += s;
2342 }
2343}
2344
NeilBrownbd870a12011-07-28 11:39:24 +10002345static void bi_complete(struct bio *bio, int error)
2346{
2347 complete((struct completion *)bio->bi_private);
2348}
2349
2350static int submit_bio_wait(int rw, struct bio *bio)
2351{
2352 struct completion event;
2353 rw |= REQ_SYNC;
2354
2355 init_completion(&event);
2356 bio->bi_private = &event;
2357 bio->bi_end_io = bi_complete;
2358 submit_bio(rw, bio);
2359 wait_for_completion(&event);
2360
2361 return test_bit(BIO_UPTODATE, &bio->bi_flags);
2362}
2363
NeilBrown9f2c9d12011-10-11 16:48:43 +11002364static int narrow_write_error(struct r10bio *r10_bio, int i)
NeilBrownbd870a12011-07-28 11:39:24 +10002365{
2366 struct bio *bio = r10_bio->master_bio;
NeilBrownfd01b882011-10-11 16:47:53 +11002367 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11002368 struct r10conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11002369 struct md_rdev *rdev = conf->mirrors[r10_bio->devs[i].devnum].rdev;
NeilBrownbd870a12011-07-28 11:39:24 +10002370 /* bio has the data to be written to slot 'i' where
2371 * we just recently had a write error.
2372 * We repeatedly clone the bio and trim down to one block,
2373 * then try the write. Where the write fails we record
2374 * a bad block.
2375 * It is conceivable that the bio doesn't exactly align with
2376 * blocks. We must handle this.
2377 *
2378 * We currently own a reference to the rdev.
2379 */
2380
2381 int block_sectors;
2382 sector_t sector;
2383 int sectors;
2384 int sect_to_write = r10_bio->sectors;
2385 int ok = 1;
2386
2387 if (rdev->badblocks.shift < 0)
2388 return 0;
2389
2390 block_sectors = 1 << rdev->badblocks.shift;
2391 sector = r10_bio->sector;
2392 sectors = ((r10_bio->sector + block_sectors)
2393 & ~(sector_t)(block_sectors - 1))
2394 - sector;
2395
2396 while (sect_to_write) {
2397 struct bio *wbio;
2398 if (sectors > sect_to_write)
2399 sectors = sect_to_write;
2400 /* Write at 'sector' for 'sectors' */
2401 wbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
2402 md_trim_bio(wbio, sector - bio->bi_sector, sectors);
2403 wbio->bi_sector = (r10_bio->devs[i].addr+
NeilBrownf8c9e742012-05-21 09:28:33 +10002404 choose_data_offset(r10_bio, rdev) +
NeilBrownbd870a12011-07-28 11:39:24 +10002405 (sector - r10_bio->sector));
2406 wbio->bi_bdev = rdev->bdev;
2407 if (submit_bio_wait(WRITE, wbio) == 0)
2408 /* Failure! */
2409 ok = rdev_set_badblocks(rdev, sector,
2410 sectors, 0)
2411 && ok;
2412
2413 bio_put(wbio);
2414 sect_to_write -= sectors;
2415 sector += sectors;
2416 sectors = block_sectors;
2417 }
2418 return ok;
2419}
2420
NeilBrown9f2c9d12011-10-11 16:48:43 +11002421static void handle_read_error(struct mddev *mddev, struct r10bio *r10_bio)
NeilBrown560f8e52011-07-28 11:39:23 +10002422{
2423 int slot = r10_bio->read_slot;
NeilBrown560f8e52011-07-28 11:39:23 +10002424 struct bio *bio;
NeilBrowne879a872011-10-11 16:49:02 +11002425 struct r10conf *conf = mddev->private;
NeilBrownabbf0982011-12-23 10:17:54 +11002426 struct md_rdev *rdev = r10_bio->devs[slot].rdev;
NeilBrown560f8e52011-07-28 11:39:23 +10002427 char b[BDEVNAME_SIZE];
2428 unsigned long do_sync;
NeilBrown856e08e2011-07-28 11:39:23 +10002429 int max_sectors;
NeilBrown560f8e52011-07-28 11:39:23 +10002430
2431 /* we got a read error. Maybe the drive is bad. Maybe just
2432 * the block and we can fix it.
2433 * We freeze all other IO, and try reading the block from
2434 * other devices. When we find one, we re-write
2435 * and check it that fixes the read error.
2436 * This is all done synchronously while the array is
2437 * frozen.
2438 */
NeilBrownfae8cc5e2012-02-14 11:10:10 +11002439 bio = r10_bio->devs[slot].bio;
2440 bdevname(bio->bi_bdev, b);
2441 bio_put(bio);
2442 r10_bio->devs[slot].bio = NULL;
2443
NeilBrown560f8e52011-07-28 11:39:23 +10002444 if (mddev->ro == 0) {
2445 freeze_array(conf);
2446 fix_read_error(conf, mddev, r10_bio);
2447 unfreeze_array(conf);
NeilBrownfae8cc5e2012-02-14 11:10:10 +11002448 } else
2449 r10_bio->devs[slot].bio = IO_BLOCKED;
2450
NeilBrownabbf0982011-12-23 10:17:54 +11002451 rdev_dec_pending(rdev, mddev);
NeilBrown560f8e52011-07-28 11:39:23 +10002452
NeilBrown7399c312011-07-28 11:39:23 +10002453read_more:
NeilBrown96c3fd12011-12-23 10:17:54 +11002454 rdev = read_balance(conf, r10_bio, &max_sectors);
2455 if (rdev == NULL) {
NeilBrown560f8e52011-07-28 11:39:23 +10002456 printk(KERN_ALERT "md/raid10:%s: %s: unrecoverable I/O"
2457 " read error for block %llu\n",
NeilBrown7399c312011-07-28 11:39:23 +10002458 mdname(mddev), b,
NeilBrown560f8e52011-07-28 11:39:23 +10002459 (unsigned long long)r10_bio->sector);
2460 raid_end_bio_io(r10_bio);
NeilBrown560f8e52011-07-28 11:39:23 +10002461 return;
2462 }
2463
2464 do_sync = (r10_bio->master_bio->bi_rw & REQ_SYNC);
NeilBrown560f8e52011-07-28 11:39:23 +10002465 slot = r10_bio->read_slot;
NeilBrown560f8e52011-07-28 11:39:23 +10002466 printk_ratelimited(
2467 KERN_ERR
2468 "md/raid10:%s: %s: redirecting"
2469 "sector %llu to another mirror\n",
2470 mdname(mddev),
2471 bdevname(rdev->bdev, b),
2472 (unsigned long long)r10_bio->sector);
2473 bio = bio_clone_mddev(r10_bio->master_bio,
2474 GFP_NOIO, mddev);
NeilBrown7399c312011-07-28 11:39:23 +10002475 md_trim_bio(bio,
2476 r10_bio->sector - bio->bi_sector,
2477 max_sectors);
NeilBrown560f8e52011-07-28 11:39:23 +10002478 r10_bio->devs[slot].bio = bio;
NeilBrownabbf0982011-12-23 10:17:54 +11002479 r10_bio->devs[slot].rdev = rdev;
NeilBrown560f8e52011-07-28 11:39:23 +10002480 bio->bi_sector = r10_bio->devs[slot].addr
NeilBrownf8c9e742012-05-21 09:28:33 +10002481 + choose_data_offset(r10_bio, rdev);
NeilBrown560f8e52011-07-28 11:39:23 +10002482 bio->bi_bdev = rdev->bdev;
2483 bio->bi_rw = READ | do_sync;
2484 bio->bi_private = r10_bio;
2485 bio->bi_end_io = raid10_end_read_request;
NeilBrown7399c312011-07-28 11:39:23 +10002486 if (max_sectors < r10_bio->sectors) {
2487 /* Drat - have to split this up more */
2488 struct bio *mbio = r10_bio->master_bio;
2489 int sectors_handled =
2490 r10_bio->sector + max_sectors
2491 - mbio->bi_sector;
2492 r10_bio->sectors = max_sectors;
2493 spin_lock_irq(&conf->device_lock);
2494 if (mbio->bi_phys_segments == 0)
2495 mbio->bi_phys_segments = 2;
2496 else
2497 mbio->bi_phys_segments++;
2498 spin_unlock_irq(&conf->device_lock);
2499 generic_make_request(bio);
NeilBrown7399c312011-07-28 11:39:23 +10002500
2501 r10_bio = mempool_alloc(conf->r10bio_pool,
2502 GFP_NOIO);
2503 r10_bio->master_bio = mbio;
2504 r10_bio->sectors = (mbio->bi_size >> 9)
2505 - sectors_handled;
2506 r10_bio->state = 0;
2507 set_bit(R10BIO_ReadError,
2508 &r10_bio->state);
2509 r10_bio->mddev = mddev;
2510 r10_bio->sector = mbio->bi_sector
2511 + sectors_handled;
2512
2513 goto read_more;
2514 } else
2515 generic_make_request(bio);
NeilBrown560f8e52011-07-28 11:39:23 +10002516}
2517
NeilBrowne879a872011-10-11 16:49:02 +11002518static void handle_write_completed(struct r10conf *conf, struct r10bio *r10_bio)
NeilBrown749c55e2011-07-28 11:39:24 +10002519{
2520 /* Some sort of write request has finished and it
2521 * succeeded in writing where we thought there was a
2522 * bad block. So forget the bad block.
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002523 * Or possibly if failed and we need to record
2524 * a bad block.
NeilBrown749c55e2011-07-28 11:39:24 +10002525 */
2526 int m;
NeilBrown3cb03002011-10-11 16:45:26 +11002527 struct md_rdev *rdev;
NeilBrown749c55e2011-07-28 11:39:24 +10002528
2529 if (test_bit(R10BIO_IsSync, &r10_bio->state) ||
2530 test_bit(R10BIO_IsRecover, &r10_bio->state)) {
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002531 for (m = 0; m < conf->copies; m++) {
2532 int dev = r10_bio->devs[m].devnum;
2533 rdev = conf->mirrors[dev].rdev;
2534 if (r10_bio->devs[m].bio == NULL)
2535 continue;
2536 if (test_bit(BIO_UPTODATE,
NeilBrown749c55e2011-07-28 11:39:24 +10002537 &r10_bio->devs[m].bio->bi_flags)) {
NeilBrown749c55e2011-07-28 11:39:24 +10002538 rdev_clear_badblocks(
2539 rdev,
2540 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002541 r10_bio->sectors, 0);
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002542 } else {
2543 if (!rdev_set_badblocks(
2544 rdev,
2545 r10_bio->devs[m].addr,
2546 r10_bio->sectors, 0))
2547 md_error(conf->mddev, rdev);
NeilBrown749c55e2011-07-28 11:39:24 +10002548 }
NeilBrown9ad1aef2011-12-23 10:17:55 +11002549 rdev = conf->mirrors[dev].replacement;
2550 if (r10_bio->devs[m].repl_bio == NULL)
2551 continue;
2552 if (test_bit(BIO_UPTODATE,
2553 &r10_bio->devs[m].repl_bio->bi_flags)) {
2554 rdev_clear_badblocks(
2555 rdev,
2556 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002557 r10_bio->sectors, 0);
NeilBrown9ad1aef2011-12-23 10:17:55 +11002558 } else {
2559 if (!rdev_set_badblocks(
2560 rdev,
2561 r10_bio->devs[m].addr,
2562 r10_bio->sectors, 0))
2563 md_error(conf->mddev, rdev);
2564 }
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002565 }
NeilBrown749c55e2011-07-28 11:39:24 +10002566 put_buf(r10_bio);
2567 } else {
NeilBrownbd870a12011-07-28 11:39:24 +10002568 for (m = 0; m < conf->copies; m++) {
2569 int dev = r10_bio->devs[m].devnum;
2570 struct bio *bio = r10_bio->devs[m].bio;
2571 rdev = conf->mirrors[dev].rdev;
2572 if (bio == IO_MADE_GOOD) {
NeilBrown749c55e2011-07-28 11:39:24 +10002573 rdev_clear_badblocks(
2574 rdev,
2575 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002576 r10_bio->sectors, 0);
NeilBrown749c55e2011-07-28 11:39:24 +10002577 rdev_dec_pending(rdev, conf->mddev);
NeilBrownbd870a12011-07-28 11:39:24 +10002578 } else if (bio != NULL &&
2579 !test_bit(BIO_UPTODATE, &bio->bi_flags)) {
2580 if (!narrow_write_error(r10_bio, m)) {
2581 md_error(conf->mddev, rdev);
2582 set_bit(R10BIO_Degraded,
2583 &r10_bio->state);
2584 }
2585 rdev_dec_pending(rdev, conf->mddev);
NeilBrown749c55e2011-07-28 11:39:24 +10002586 }
NeilBrown475b0322011-12-23 10:17:55 +11002587 bio = r10_bio->devs[m].repl_bio;
2588 rdev = conf->mirrors[dev].replacement;
NeilBrown4ca40c22011-12-23 10:17:55 +11002589 if (rdev && bio == IO_MADE_GOOD) {
NeilBrown475b0322011-12-23 10:17:55 +11002590 rdev_clear_badblocks(
2591 rdev,
2592 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002593 r10_bio->sectors, 0);
NeilBrown475b0322011-12-23 10:17:55 +11002594 rdev_dec_pending(rdev, conf->mddev);
2595 }
NeilBrownbd870a12011-07-28 11:39:24 +10002596 }
2597 if (test_bit(R10BIO_WriteError,
2598 &r10_bio->state))
2599 close_write(r10_bio);
NeilBrown749c55e2011-07-28 11:39:24 +10002600 raid_end_bio_io(r10_bio);
2601 }
2602}
2603
NeilBrownfd01b882011-10-11 16:47:53 +11002604static void raid10d(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605{
NeilBrown9f2c9d12011-10-11 16:48:43 +11002606 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 unsigned long flags;
NeilBrowne879a872011-10-11 16:49:02 +11002608 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 struct list_head *head = &conf->retry_list;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002610 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
2612 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002614 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 for (;;) {
NeilBrowna35e63e2008-03-04 14:29:29 -08002616
Jens Axboe7eaceac2011-03-10 08:52:07 +01002617 flush_pending_writes(conf);
NeilBrowna35e63e2008-03-04 14:29:29 -08002618
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08002620 if (list_empty(head)) {
NeilBrown6cce3b22006-01-06 00:20:16 -08002621 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08002623 }
NeilBrown9f2c9d12011-10-11 16:48:43 +11002624 r10_bio = list_entry(head->prev, struct r10bio, retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 list_del(head->prev);
NeilBrown4443ae12006-01-06 00:20:28 -08002626 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 spin_unlock_irqrestore(&conf->device_lock, flags);
2628
2629 mddev = r10_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10002630 conf = mddev->private;
NeilBrownbd870a12011-07-28 11:39:24 +10002631 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
2632 test_bit(R10BIO_WriteError, &r10_bio->state))
NeilBrown749c55e2011-07-28 11:39:24 +10002633 handle_write_completed(conf, r10_bio);
2634 else if (test_bit(R10BIO_IsSync, &r10_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 sync_request_write(mddev, r10_bio);
Jens Axboe7eaceac2011-03-10 08:52:07 +01002636 else if (test_bit(R10BIO_IsRecover, &r10_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 recovery_request_write(mddev, r10_bio);
NeilBrown856e08e2011-07-28 11:39:23 +10002638 else if (test_bit(R10BIO_ReadError, &r10_bio->state))
NeilBrown560f8e52011-07-28 11:39:23 +10002639 handle_read_error(mddev, r10_bio);
NeilBrown856e08e2011-07-28 11:39:23 +10002640 else {
2641 /* just a partial read to be scheduled from a
2642 * separate context
2643 */
2644 int slot = r10_bio->read_slot;
2645 generic_make_request(r10_bio->devs[slot].bio);
2646 }
NeilBrown4443ae12006-01-06 00:20:28 -08002647
NeilBrown1d9d5242009-10-16 15:55:32 +11002648 cond_resched();
NeilBrownde393cd2011-07-28 11:31:48 +10002649 if (mddev->flags & ~(1<<MD_CHANGE_PENDING))
2650 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 }
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002652 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653}
2654
2655
NeilBrowne879a872011-10-11 16:49:02 +11002656static int init_resync(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657{
2658 int buffs;
NeilBrown69335ef2011-12-23 10:17:54 +11002659 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
2661 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhennb6385482006-04-02 13:34:29 +02002662 BUG_ON(conf->r10buf_pool);
NeilBrown69335ef2011-12-23 10:17:54 +11002663 conf->have_replacement = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +10002664 for (i = 0; i < conf->geo.raid_disks; i++)
NeilBrown69335ef2011-12-23 10:17:54 +11002665 if (conf->mirrors[i].replacement)
2666 conf->have_replacement = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 conf->r10buf_pool = mempool_create(buffs, r10buf_pool_alloc, r10buf_pool_free, conf);
2668 if (!conf->r10buf_pool)
2669 return -ENOMEM;
2670 conf->next_resync = 0;
2671 return 0;
2672}
2673
2674/*
2675 * perform a "sync" on one "block"
2676 *
2677 * We need to make sure that no normal I/O request - particularly write
2678 * requests - conflict with active sync requests.
2679 *
2680 * This is achieved by tracking pending requests and a 'barrier' concept
2681 * that can be installed to exclude normal IO requests.
2682 *
2683 * Resync and recovery are handled very differently.
2684 * We differentiate by looking at MD_RECOVERY_SYNC in mddev->recovery.
2685 *
2686 * For resync, we iterate over virtual addresses, read all copies,
2687 * and update if there are differences. If only one copy is live,
2688 * skip it.
2689 * For recovery, we iterate over physical addresses, read a good
2690 * value for each non-in_sync drive, and over-write.
2691 *
2692 * So, for recovery we may have several outstanding complex requests for a
2693 * given address, one for each out-of-sync device. We model this by allocating
2694 * a number of r10_bio structures, one for each out-of-sync device.
2695 * As we setup these structures, we collect all bio's together into a list
2696 * which we then process collectively to add pages, and then process again
2697 * to pass to generic_make_request.
2698 *
2699 * The r10_bio structures are linked using a borrowed master_bio pointer.
2700 * This link is counted in ->remaining. When the r10_bio that points to NULL
2701 * has its remaining count decremented to 0, the whole complex operation
2702 * is complete.
2703 *
2704 */
2705
NeilBrownfd01b882011-10-11 16:47:53 +11002706static sector_t sync_request(struct mddev *mddev, sector_t sector_nr,
NeilBrownab9d47e2011-05-11 14:54:41 +10002707 int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708{
NeilBrowne879a872011-10-11 16:49:02 +11002709 struct r10conf *conf = mddev->private;
NeilBrown9f2c9d12011-10-11 16:48:43 +11002710 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 struct bio *biolist = NULL, *bio;
2712 sector_t max_sector, nr_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 int i;
NeilBrown6cce3b22006-01-06 00:20:16 -08002714 int max_sync;
NeilBrown57dab0b2010-10-19 10:03:39 +11002715 sector_t sync_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 sector_t sectors_skipped = 0;
2717 int chunks_skipped = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +10002718 sector_t chunk_mask = conf->geo.chunk_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
2720 if (!conf->r10buf_pool)
2721 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07002722 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
2724 skipped:
Andre Noll58c0fed2009-03-31 14:33:13 +11002725 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery))
2727 max_sector = mddev->resync_max_sectors;
2728 if (sector_nr >= max_sector) {
NeilBrown6cce3b22006-01-06 00:20:16 -08002729 /* If we aborted, we need to abort the
2730 * sync on the 'current' bitmap chucks (there can
2731 * be several when recovering multiple devices).
2732 * as we may have started syncing it but not finished.
2733 * We can find the current address in
2734 * mddev->curr_resync, but for recovery,
2735 * we need to convert that to several
2736 * virtual addresses.
2737 */
2738 if (mddev->curr_resync < max_sector) { /* aborted */
2739 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery))
2740 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
2741 &sync_blocks, 1);
NeilBrown5cf00fc2012-05-21 09:28:20 +10002742 else for (i = 0; i < conf->geo.raid_disks; i++) {
NeilBrown6cce3b22006-01-06 00:20:16 -08002743 sector_t sect =
2744 raid10_find_virt(conf, mddev->curr_resync, i);
2745 bitmap_end_sync(mddev->bitmap, sect,
2746 &sync_blocks, 1);
2747 }
NeilBrown9ad1aef2011-12-23 10:17:55 +11002748 } else {
2749 /* completed sync */
2750 if ((!mddev->bitmap || conf->fullsync)
2751 && conf->have_replacement
2752 && test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
2753 /* Completed a full sync so the replacements
2754 * are now fully recovered.
2755 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10002756 for (i = 0; i < conf->geo.raid_disks; i++)
NeilBrown9ad1aef2011-12-23 10:17:55 +11002757 if (conf->mirrors[i].replacement)
2758 conf->mirrors[i].replacement
2759 ->recovery_offset
2760 = MaxSector;
2761 }
NeilBrown6cce3b22006-01-06 00:20:16 -08002762 conf->fullsync = 0;
NeilBrown9ad1aef2011-12-23 10:17:55 +11002763 }
NeilBrown6cce3b22006-01-06 00:20:16 -08002764 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 close_sync(conf);
NeilBrown57afd892005-06-21 17:17:13 -07002766 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 return sectors_skipped;
2768 }
NeilBrown5cf00fc2012-05-21 09:28:20 +10002769 if (chunks_skipped >= conf->geo.raid_disks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 /* if there has been nothing to do on any drive,
2771 * then there is nothing to do at all..
2772 */
NeilBrown57afd892005-06-21 17:17:13 -07002773 *skipped = 1;
2774 return (max_sector - sector_nr) + sectors_skipped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 }
2776
NeilBrownc6207272008-02-06 01:39:52 -08002777 if (max_sector > mddev->resync_max)
2778 max_sector = mddev->resync_max; /* Don't do IO beyond here */
2779
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 /* make sure whole request will fit in a chunk - if chunks
2781 * are meaningful
2782 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10002783 if (conf->geo.near_copies < conf->geo.raid_disks &&
2784 max_sector > (sector_nr | chunk_mask))
2785 max_sector = (sector_nr | chunk_mask) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 /*
2787 * If there is non-resync activity waiting for us then
2788 * put in a delay to throttle resync.
2789 */
NeilBrown0a27ec92006-01-06 00:20:13 -08002790 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 msleep_interruptible(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
2793 /* Again, very different code for resync and recovery.
2794 * Both must result in an r10bio with a list of bios that
2795 * have bi_end_io, bi_sector, bi_bdev set,
2796 * and bi_private set to the r10bio.
2797 * For recovery, we may actually create several r10bios
2798 * with 2 bios in each, that correspond to the bios in the main one.
2799 * In this case, the subordinate r10bios link back through a
2800 * borrowed master_bio pointer, and the counter in the master
2801 * includes a ref from each subordinate.
2802 */
2803 /* First, we decide what to do and set ->bi_end_io
2804 * To end_sync_read if we want to read, and
2805 * end_sync_write if we will want to write.
2806 */
2807
NeilBrown6cce3b22006-01-06 00:20:16 -08002808 max_sync = RESYNC_PAGES << (PAGE_SHIFT-9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 if (!test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
2810 /* recovery... the complicated one */
NeilBrowne875ece2011-07-28 11:39:24 +10002811 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 r10_bio = NULL;
2813
NeilBrown5cf00fc2012-05-21 09:28:20 +10002814 for (i = 0 ; i < conf->geo.raid_disks; i++) {
NeilBrownab9d47e2011-05-11 14:54:41 +10002815 int still_degraded;
NeilBrown9f2c9d12011-10-11 16:48:43 +11002816 struct r10bio *rb2;
NeilBrownab9d47e2011-05-11 14:54:41 +10002817 sector_t sect;
2818 int must_sync;
NeilBrowne875ece2011-07-28 11:39:24 +10002819 int any_working;
NeilBrown24afd802011-12-23 10:17:55 +11002820 struct mirror_info *mirror = &conf->mirrors[i];
NeilBrownab9d47e2011-05-11 14:54:41 +10002821
NeilBrown24afd802011-12-23 10:17:55 +11002822 if ((mirror->rdev == NULL ||
2823 test_bit(In_sync, &mirror->rdev->flags))
2824 &&
2825 (mirror->replacement == NULL ||
2826 test_bit(Faulty,
2827 &mirror->replacement->flags)))
NeilBrownab9d47e2011-05-11 14:54:41 +10002828 continue;
2829
2830 still_degraded = 0;
2831 /* want to reconstruct this device */
2832 rb2 = r10_bio;
2833 sect = raid10_find_virt(conf, sector_nr, i);
NeilBrown24afd802011-12-23 10:17:55 +11002834 /* Unless we are doing a full sync, or a replacement
2835 * we only need to recover the block if it is set in
2836 * the bitmap
NeilBrownab9d47e2011-05-11 14:54:41 +10002837 */
2838 must_sync = bitmap_start_sync(mddev->bitmap, sect,
2839 &sync_blocks, 1);
2840 if (sync_blocks < max_sync)
2841 max_sync = sync_blocks;
2842 if (!must_sync &&
NeilBrown24afd802011-12-23 10:17:55 +11002843 mirror->replacement == NULL &&
NeilBrownab9d47e2011-05-11 14:54:41 +10002844 !conf->fullsync) {
2845 /* yep, skip the sync_blocks here, but don't assume
2846 * that there will never be anything to do here
NeilBrown6cce3b22006-01-06 00:20:16 -08002847 */
NeilBrownab9d47e2011-05-11 14:54:41 +10002848 chunks_skipped = -1;
2849 continue;
2850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
NeilBrownab9d47e2011-05-11 14:54:41 +10002852 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
2853 raise_barrier(conf, rb2 != NULL);
2854 atomic_set(&r10_bio->remaining, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
NeilBrownab9d47e2011-05-11 14:54:41 +10002856 r10_bio->master_bio = (struct bio*)rb2;
2857 if (rb2)
2858 atomic_inc(&rb2->remaining);
2859 r10_bio->mddev = mddev;
2860 set_bit(R10BIO_IsRecover, &r10_bio->state);
2861 r10_bio->sector = sect;
NeilBrown6cce3b22006-01-06 00:20:16 -08002862
NeilBrownab9d47e2011-05-11 14:54:41 +10002863 raid10_find_phys(conf, r10_bio);
NeilBrown18055562009-05-07 12:48:10 +10002864
NeilBrownab9d47e2011-05-11 14:54:41 +10002865 /* Need to check if the array will still be
2866 * degraded
2867 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10002868 for (j = 0; j < conf->geo.raid_disks; j++)
NeilBrownab9d47e2011-05-11 14:54:41 +10002869 if (conf->mirrors[j].rdev == NULL ||
2870 test_bit(Faulty, &conf->mirrors[j].rdev->flags)) {
2871 still_degraded = 1;
NeilBrown87fc7672005-09-09 16:24:04 -07002872 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 }
NeilBrownab9d47e2011-05-11 14:54:41 +10002874
2875 must_sync = bitmap_start_sync(mddev->bitmap, sect,
2876 &sync_blocks, still_degraded);
2877
NeilBrowne875ece2011-07-28 11:39:24 +10002878 any_working = 0;
NeilBrownab9d47e2011-05-11 14:54:41 +10002879 for (j=0; j<conf->copies;j++) {
NeilBrowne875ece2011-07-28 11:39:24 +10002880 int k;
NeilBrownab9d47e2011-05-11 14:54:41 +10002881 int d = r10_bio->devs[j].devnum;
NeilBrown5e570282011-07-28 11:39:25 +10002882 sector_t from_addr, to_addr;
NeilBrown3cb03002011-10-11 16:45:26 +11002883 struct md_rdev *rdev;
NeilBrown40c356c2011-07-28 11:39:24 +10002884 sector_t sector, first_bad;
2885 int bad_sectors;
NeilBrownab9d47e2011-05-11 14:54:41 +10002886 if (!conf->mirrors[d].rdev ||
2887 !test_bit(In_sync, &conf->mirrors[d].rdev->flags))
2888 continue;
2889 /* This is where we read from */
NeilBrowne875ece2011-07-28 11:39:24 +10002890 any_working = 1;
NeilBrown40c356c2011-07-28 11:39:24 +10002891 rdev = conf->mirrors[d].rdev;
2892 sector = r10_bio->devs[j].addr;
2893
2894 if (is_badblock(rdev, sector, max_sync,
2895 &first_bad, &bad_sectors)) {
2896 if (first_bad > sector)
2897 max_sync = first_bad - sector;
2898 else {
2899 bad_sectors -= (sector
2900 - first_bad);
2901 if (max_sync > bad_sectors)
2902 max_sync = bad_sectors;
2903 continue;
2904 }
2905 }
NeilBrownab9d47e2011-05-11 14:54:41 +10002906 bio = r10_bio->devs[0].bio;
2907 bio->bi_next = biolist;
2908 biolist = bio;
2909 bio->bi_private = r10_bio;
2910 bio->bi_end_io = end_sync_read;
2911 bio->bi_rw = READ;
NeilBrown5e570282011-07-28 11:39:25 +10002912 from_addr = r10_bio->devs[j].addr;
NeilBrown24afd802011-12-23 10:17:55 +11002913 bio->bi_sector = from_addr + rdev->data_offset;
2914 bio->bi_bdev = rdev->bdev;
2915 atomic_inc(&rdev->nr_pending);
2916 /* and we write to 'i' (if not in_sync) */
NeilBrownab9d47e2011-05-11 14:54:41 +10002917
2918 for (k=0; k<conf->copies; k++)
2919 if (r10_bio->devs[k].devnum == i)
2920 break;
2921 BUG_ON(k == conf->copies);
NeilBrown5e570282011-07-28 11:39:25 +10002922 to_addr = r10_bio->devs[k].addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10002923 r10_bio->devs[0].devnum = d;
NeilBrown5e570282011-07-28 11:39:25 +10002924 r10_bio->devs[0].addr = from_addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10002925 r10_bio->devs[1].devnum = i;
NeilBrown5e570282011-07-28 11:39:25 +10002926 r10_bio->devs[1].addr = to_addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10002927
NeilBrown24afd802011-12-23 10:17:55 +11002928 rdev = mirror->rdev;
2929 if (!test_bit(In_sync, &rdev->flags)) {
2930 bio = r10_bio->devs[1].bio;
2931 bio->bi_next = biolist;
2932 biolist = bio;
2933 bio->bi_private = r10_bio;
2934 bio->bi_end_io = end_sync_write;
2935 bio->bi_rw = WRITE;
2936 bio->bi_sector = to_addr
2937 + rdev->data_offset;
2938 bio->bi_bdev = rdev->bdev;
2939 atomic_inc(&r10_bio->remaining);
2940 } else
2941 r10_bio->devs[1].bio->bi_end_io = NULL;
2942
2943 /* and maybe write to replacement */
2944 bio = r10_bio->devs[1].repl_bio;
2945 if (bio)
2946 bio->bi_end_io = NULL;
2947 rdev = mirror->replacement;
2948 /* Note: if rdev != NULL, then bio
2949 * cannot be NULL as r10buf_pool_alloc will
2950 * have allocated it.
2951 * So the second test here is pointless.
2952 * But it keeps semantic-checkers happy, and
2953 * this comment keeps human reviewers
2954 * happy.
2955 */
2956 if (rdev == NULL || bio == NULL ||
2957 test_bit(Faulty, &rdev->flags))
2958 break;
2959 bio->bi_next = biolist;
2960 biolist = bio;
2961 bio->bi_private = r10_bio;
2962 bio->bi_end_io = end_sync_write;
2963 bio->bi_rw = WRITE;
2964 bio->bi_sector = to_addr + rdev->data_offset;
2965 bio->bi_bdev = rdev->bdev;
2966 atomic_inc(&r10_bio->remaining);
NeilBrownab9d47e2011-05-11 14:54:41 +10002967 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 }
NeilBrownab9d47e2011-05-11 14:54:41 +10002969 if (j == conf->copies) {
NeilBrowne875ece2011-07-28 11:39:24 +10002970 /* Cannot recover, so abort the recovery or
2971 * record a bad block */
NeilBrownab9d47e2011-05-11 14:54:41 +10002972 put_buf(r10_bio);
2973 if (rb2)
2974 atomic_dec(&rb2->remaining);
2975 r10_bio = rb2;
NeilBrowne875ece2011-07-28 11:39:24 +10002976 if (any_working) {
2977 /* problem is that there are bad blocks
2978 * on other device(s)
2979 */
2980 int k;
2981 for (k = 0; k < conf->copies; k++)
2982 if (r10_bio->devs[k].devnum == i)
2983 break;
NeilBrown24afd802011-12-23 10:17:55 +11002984 if (!test_bit(In_sync,
2985 &mirror->rdev->flags)
2986 && !rdev_set_badblocks(
2987 mirror->rdev,
2988 r10_bio->devs[k].addr,
2989 max_sync, 0))
2990 any_working = 0;
2991 if (mirror->replacement &&
2992 !rdev_set_badblocks(
2993 mirror->replacement,
NeilBrowne875ece2011-07-28 11:39:24 +10002994 r10_bio->devs[k].addr,
2995 max_sync, 0))
2996 any_working = 0;
2997 }
2998 if (!any_working) {
2999 if (!test_and_set_bit(MD_RECOVERY_INTR,
3000 &mddev->recovery))
3001 printk(KERN_INFO "md/raid10:%s: insufficient "
3002 "working devices for recovery.\n",
3003 mdname(mddev));
NeilBrown24afd802011-12-23 10:17:55 +11003004 mirror->recovery_disabled
NeilBrowne875ece2011-07-28 11:39:24 +10003005 = mddev->recovery_disabled;
3006 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003007 break;
3008 }
3009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 if (biolist == NULL) {
3011 while (r10_bio) {
NeilBrown9f2c9d12011-10-11 16:48:43 +11003012 struct r10bio *rb2 = r10_bio;
3013 r10_bio = (struct r10bio*) rb2->master_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 rb2->master_bio = NULL;
3015 put_buf(rb2);
3016 }
3017 goto giveup;
3018 }
3019 } else {
3020 /* resync. Schedule a read for every block at this virt offset */
3021 int count = 0;
NeilBrown6cce3b22006-01-06 00:20:16 -08003022
NeilBrown78200d42009-02-25 13:18:47 +11003023 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
3024
NeilBrown6cce3b22006-01-06 00:20:16 -08003025 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
3026 &sync_blocks, mddev->degraded) &&
NeilBrownab9d47e2011-05-11 14:54:41 +10003027 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED,
3028 &mddev->recovery)) {
NeilBrown6cce3b22006-01-06 00:20:16 -08003029 /* We can skip this block */
3030 *skipped = 1;
3031 return sync_blocks + sectors_skipped;
3032 }
3033 if (sync_blocks < max_sync)
3034 max_sync = sync_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
3036
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 r10_bio->mddev = mddev;
3038 atomic_set(&r10_bio->remaining, 0);
NeilBrown6cce3b22006-01-06 00:20:16 -08003039 raise_barrier(conf, 0);
3040 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
3042 r10_bio->master_bio = NULL;
3043 r10_bio->sector = sector_nr;
3044 set_bit(R10BIO_IsSync, &r10_bio->state);
3045 raid10_find_phys(conf, r10_bio);
NeilBrown5cf00fc2012-05-21 09:28:20 +10003046 r10_bio->sectors = (sector_nr | chunk_mask) - sector_nr + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
NeilBrown5cf00fc2012-05-21 09:28:20 +10003048 for (i = 0; i < conf->copies; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 int d = r10_bio->devs[i].devnum;
NeilBrown40c356c2011-07-28 11:39:24 +10003050 sector_t first_bad, sector;
3051 int bad_sectors;
3052
NeilBrown9ad1aef2011-12-23 10:17:55 +11003053 if (r10_bio->devs[i].repl_bio)
3054 r10_bio->devs[i].repl_bio->bi_end_io = NULL;
3055
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 bio = r10_bio->devs[i].bio;
3057 bio->bi_end_io = NULL;
NeilBrownaf03b8e2007-06-16 10:16:06 -07003058 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 if (conf->mirrors[d].rdev == NULL ||
NeilBrownb2d444d2005-11-08 21:39:31 -08003060 test_bit(Faulty, &conf->mirrors[d].rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 continue;
NeilBrown40c356c2011-07-28 11:39:24 +10003062 sector = r10_bio->devs[i].addr;
3063 if (is_badblock(conf->mirrors[d].rdev,
3064 sector, max_sync,
3065 &first_bad, &bad_sectors)) {
3066 if (first_bad > sector)
3067 max_sync = first_bad - sector;
3068 else {
3069 bad_sectors -= (sector - first_bad);
3070 if (max_sync > bad_sectors)
3071 max_sync = max_sync;
3072 continue;
3073 }
3074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
3076 atomic_inc(&r10_bio->remaining);
3077 bio->bi_next = biolist;
3078 biolist = bio;
3079 bio->bi_private = r10_bio;
3080 bio->bi_end_io = end_sync_read;
NeilBrown802ba062006-12-13 00:34:13 -08003081 bio->bi_rw = READ;
NeilBrown40c356c2011-07-28 11:39:24 +10003082 bio->bi_sector = sector +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 conf->mirrors[d].rdev->data_offset;
3084 bio->bi_bdev = conf->mirrors[d].rdev->bdev;
3085 count++;
NeilBrown9ad1aef2011-12-23 10:17:55 +11003086
3087 if (conf->mirrors[d].replacement == NULL ||
3088 test_bit(Faulty,
3089 &conf->mirrors[d].replacement->flags))
3090 continue;
3091
3092 /* Need to set up for writing to the replacement */
3093 bio = r10_bio->devs[i].repl_bio;
3094 clear_bit(BIO_UPTODATE, &bio->bi_flags);
3095
3096 sector = r10_bio->devs[i].addr;
3097 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
3098 bio->bi_next = biolist;
3099 biolist = bio;
3100 bio->bi_private = r10_bio;
3101 bio->bi_end_io = end_sync_write;
3102 bio->bi_rw = WRITE;
3103 bio->bi_sector = sector +
3104 conf->mirrors[d].replacement->data_offset;
3105 bio->bi_bdev = conf->mirrors[d].replacement->bdev;
3106 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 }
3108
3109 if (count < 2) {
3110 for (i=0; i<conf->copies; i++) {
3111 int d = r10_bio->devs[i].devnum;
3112 if (r10_bio->devs[i].bio->bi_end_io)
NeilBrownab9d47e2011-05-11 14:54:41 +10003113 rdev_dec_pending(conf->mirrors[d].rdev,
3114 mddev);
NeilBrown9ad1aef2011-12-23 10:17:55 +11003115 if (r10_bio->devs[i].repl_bio &&
3116 r10_bio->devs[i].repl_bio->bi_end_io)
3117 rdev_dec_pending(
3118 conf->mirrors[d].replacement,
3119 mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 }
3121 put_buf(r10_bio);
3122 biolist = NULL;
3123 goto giveup;
3124 }
3125 }
3126
3127 for (bio = biolist; bio ; bio=bio->bi_next) {
3128
3129 bio->bi_flags &= ~(BIO_POOL_MASK - 1);
3130 if (bio->bi_end_io)
3131 bio->bi_flags |= 1 << BIO_UPTODATE;
3132 bio->bi_vcnt = 0;
3133 bio->bi_idx = 0;
3134 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 bio->bi_size = 0;
3136 }
3137
3138 nr_sectors = 0;
NeilBrown6cce3b22006-01-06 00:20:16 -08003139 if (sector_nr + max_sync < max_sector)
3140 max_sector = sector_nr + max_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 do {
3142 struct page *page;
3143 int len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 if (sector_nr + (len>>9) > max_sector)
3145 len = (max_sector - sector_nr) << 9;
3146 if (len == 0)
3147 break;
3148 for (bio= biolist ; bio ; bio=bio->bi_next) {
NeilBrownab9d47e2011-05-11 14:54:41 +10003149 struct bio *bio2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
NeilBrownab9d47e2011-05-11 14:54:41 +10003151 if (bio_add_page(bio, page, len, 0))
3152 continue;
3153
3154 /* stop here */
3155 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
3156 for (bio2 = biolist;
3157 bio2 && bio2 != bio;
3158 bio2 = bio2->bi_next) {
3159 /* remove last page from this bio */
3160 bio2->bi_vcnt--;
3161 bio2->bi_size -= len;
3162 bio2->bi_flags &= ~(1<< BIO_SEG_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003164 goto bio_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 }
3166 nr_sectors += len>>9;
3167 sector_nr += len>>9;
3168 } while (biolist->bi_vcnt < RESYNC_PAGES);
3169 bio_full:
3170 r10_bio->sectors = nr_sectors;
3171
3172 while (biolist) {
3173 bio = biolist;
3174 biolist = biolist->bi_next;
3175
3176 bio->bi_next = NULL;
3177 r10_bio = bio->bi_private;
3178 r10_bio->sectors = nr_sectors;
3179
3180 if (bio->bi_end_io == end_sync_read) {
3181 md_sync_acct(bio->bi_bdev, nr_sectors);
3182 generic_make_request(bio);
3183 }
3184 }
3185
NeilBrown57afd892005-06-21 17:17:13 -07003186 if (sectors_skipped)
3187 /* pretend they weren't skipped, it makes
3188 * no important difference in this case
3189 */
3190 md_done_sync(mddev, sectors_skipped, 1);
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 return sectors_skipped + nr_sectors;
3193 giveup:
3194 /* There is nowhere to write, so all non-sync
NeilBrowne875ece2011-07-28 11:39:24 +10003195 * drives must be failed or in resync, all drives
3196 * have a bad block, so try the next chunk...
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 */
NeilBrown09b40682009-02-25 13:18:47 +11003198 if (sector_nr + max_sync < max_sector)
3199 max_sector = sector_nr + max_sync;
3200
3201 sectors_skipped += (max_sector - sector_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 chunks_skipped ++;
3203 sector_nr = max_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 goto skipped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205}
3206
Dan Williams80c3a6c2009-03-17 18:10:40 -07003207static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11003208raid10_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07003209{
3210 sector_t size;
NeilBrowne879a872011-10-11 16:49:02 +11003211 struct r10conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003212
3213 if (!raid_disks)
NeilBrown5cf00fc2012-05-21 09:28:20 +10003214 raid_disks = conf->geo.raid_disks;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003215 if (!sectors)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003216 sectors = conf->dev_sectors;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003217
NeilBrown5cf00fc2012-05-21 09:28:20 +10003218 size = sectors >> conf->geo.chunk_shift;
3219 sector_div(size, conf->geo.far_copies);
Dan Williams80c3a6c2009-03-17 18:10:40 -07003220 size = size * raid_disks;
NeilBrown5cf00fc2012-05-21 09:28:20 +10003221 sector_div(size, conf->geo.near_copies);
Dan Williams80c3a6c2009-03-17 18:10:40 -07003222
NeilBrown5cf00fc2012-05-21 09:28:20 +10003223 return size << conf->geo.chunk_shift;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003224}
3225
NeilBrown6508fdb2012-05-17 10:08:45 +10003226static void calc_sectors(struct r10conf *conf, sector_t size)
3227{
3228 /* Calculate the number of sectors-per-device that will
3229 * actually be used, and set conf->dev_sectors and
3230 * conf->stride
3231 */
3232
NeilBrown5cf00fc2012-05-21 09:28:20 +10003233 size = size >> conf->geo.chunk_shift;
3234 sector_div(size, conf->geo.far_copies);
3235 size = size * conf->geo.raid_disks;
3236 sector_div(size, conf->geo.near_copies);
NeilBrown6508fdb2012-05-17 10:08:45 +10003237 /* 'size' is now the number of chunks in the array */
3238 /* calculate "used chunks per device" */
3239 size = size * conf->copies;
3240
3241 /* We need to round up when dividing by raid_disks to
3242 * get the stride size.
3243 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10003244 size = DIV_ROUND_UP_SECTOR_T(size, conf->geo.raid_disks);
NeilBrown6508fdb2012-05-17 10:08:45 +10003245
NeilBrown5cf00fc2012-05-21 09:28:20 +10003246 conf->dev_sectors = size << conf->geo.chunk_shift;
NeilBrown6508fdb2012-05-17 10:08:45 +10003247
NeilBrown5cf00fc2012-05-21 09:28:20 +10003248 if (conf->geo.far_offset)
3249 conf->geo.stride = 1 << conf->geo.chunk_shift;
NeilBrown6508fdb2012-05-17 10:08:45 +10003250 else {
NeilBrown5cf00fc2012-05-21 09:28:20 +10003251 sector_div(size, conf->geo.far_copies);
3252 conf->geo.stride = size << conf->geo.chunk_shift;
NeilBrown6508fdb2012-05-17 10:08:45 +10003253 }
3254}
Trela, Maciejdab8b292010-03-08 16:02:45 +11003255
NeilBrowne879a872011-10-11 16:49:02 +11003256static struct r10conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257{
NeilBrowne879a872011-10-11 16:49:02 +11003258 struct r10conf *conf = NULL;
NeilBrownc93983b2006-06-26 00:27:41 -07003259 int nc, fc, fo;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003260 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
Maciej Trelaf73ea872010-06-16 11:46:29 +01003262 if (mddev->new_chunk_sectors < (PAGE_SIZE >> 9) ||
3263 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown128595e2010-05-03 14:47:14 +10003264 printk(KERN_ERR "md/raid10:%s: chunk size must be "
3265 "at least PAGE_SIZE(%ld) and be a power of 2.\n",
3266 mdname(mddev), PAGE_SIZE);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003267 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 }
NeilBrown2604b702006-01-06 00:20:36 -08003269
Maciej Trelaf73ea872010-06-16 11:46:29 +01003270 nc = mddev->new_layout & 255;
3271 fc = (mddev->new_layout >> 8) & 255;
3272 fo = mddev->new_layout & (1<<16);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003273
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 if ((nc*fc) <2 || (nc*fc) > mddev->raid_disks ||
Maciej Trelaf73ea872010-06-16 11:46:29 +01003275 (mddev->new_layout >> 17)) {
NeilBrown128595e2010-05-03 14:47:14 +10003276 printk(KERN_ERR "md/raid10:%s: unsupported raid10 layout: 0x%8x\n",
Maciej Trelaf73ea872010-06-16 11:46:29 +01003277 mdname(mddev), mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 goto out;
3279 }
Trela, Maciejdab8b292010-03-08 16:02:45 +11003280
3281 err = -ENOMEM;
NeilBrowne879a872011-10-11 16:49:02 +11003282 conf = kzalloc(sizeof(struct r10conf), GFP_KERNEL);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003283 if (!conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 goto out;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003285
NeilBrown4443ae12006-01-06 00:20:28 -08003286 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Trela, Maciejdab8b292010-03-08 16:02:45 +11003287 GFP_KERNEL);
3288 if (!conf->mirrors)
3289 goto out;
NeilBrown4443ae12006-01-06 00:20:28 -08003290
3291 conf->tmppage = alloc_page(GFP_KERNEL);
3292 if (!conf->tmppage)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003293 goto out;
3294
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295
NeilBrown5cf00fc2012-05-21 09:28:20 +10003296 conf->geo.raid_disks = mddev->raid_disks;
3297 conf->geo.near_copies = nc;
3298 conf->geo.far_copies = fc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 conf->copies = nc*fc;
NeilBrown5cf00fc2012-05-21 09:28:20 +10003300 conf->geo.far_offset = fo;
3301 conf->geo.chunk_mask = mddev->new_chunk_sectors - 1;
3302 conf->geo.chunk_shift = ffz(~mddev->new_chunk_sectors);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003303
3304 conf->r10bio_pool = mempool_create(NR_RAID10_BIOS, r10bio_pool_alloc,
3305 r10bio_pool_free, conf);
3306 if (!conf->r10bio_pool)
3307 goto out;
3308
NeilBrown6508fdb2012-05-17 10:08:45 +10003309 calc_sectors(conf, mddev->dev_sectors);
NeilBrownf8c9e742012-05-21 09:28:33 +10003310 conf->prev = conf->geo;
3311 conf->reshape_progress = MaxSector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Neil Browne7e72bf2008-05-14 16:05:54 -07003313 spin_lock_init(&conf->device_lock);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003314 INIT_LIST_HEAD(&conf->retry_list);
3315
3316 spin_lock_init(&conf->resync_lock);
3317 init_waitqueue_head(&conf->wait_barrier);
3318
3319 conf->thread = md_register_thread(raid10d, mddev, NULL);
3320 if (!conf->thread)
3321 goto out;
3322
Trela, Maciejdab8b292010-03-08 16:02:45 +11003323 conf->mddev = mddev;
3324 return conf;
3325
3326 out:
NeilBrown128595e2010-05-03 14:47:14 +10003327 printk(KERN_ERR "md/raid10:%s: couldn't allocate memory.\n",
Trela, Maciejdab8b292010-03-08 16:02:45 +11003328 mdname(mddev));
3329 if (conf) {
3330 if (conf->r10bio_pool)
3331 mempool_destroy(conf->r10bio_pool);
3332 kfree(conf->mirrors);
3333 safe_put_page(conf->tmppage);
3334 kfree(conf);
3335 }
3336 return ERR_PTR(err);
3337}
3338
NeilBrownfd01b882011-10-11 16:47:53 +11003339static int run(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003340{
NeilBrowne879a872011-10-11 16:49:02 +11003341 struct r10conf *conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003342 int i, disk_idx, chunk_size;
NeilBrown0f6d02d2011-10-11 16:48:46 +11003343 struct mirror_info *disk;
NeilBrown3cb03002011-10-11 16:45:26 +11003344 struct md_rdev *rdev;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003345 sector_t size;
3346
3347 /*
3348 * copy the already verified devices into our private RAID10
3349 * bookkeeping area. [whatever we allocate in run(),
3350 * should be freed in stop()]
3351 */
3352
3353 if (mddev->private == NULL) {
3354 conf = setup_conf(mddev);
3355 if (IS_ERR(conf))
3356 return PTR_ERR(conf);
3357 mddev->private = conf;
3358 }
3359 conf = mddev->private;
3360 if (!conf)
3361 goto out;
3362
Trela, Maciejdab8b292010-03-08 16:02:45 +11003363 mddev->thread = conf->thread;
3364 conf->thread = NULL;
3365
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10003366 chunk_size = mddev->chunk_sectors << 9;
3367 blk_queue_io_min(mddev->queue, chunk_size);
NeilBrown5cf00fc2012-05-21 09:28:20 +10003368 if (conf->geo.raid_disks % conf->geo.near_copies)
3369 blk_queue_io_opt(mddev->queue, chunk_size * conf->geo.raid_disks);
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10003370 else
3371 blk_queue_io_opt(mddev->queue, chunk_size *
NeilBrown5cf00fc2012-05-21 09:28:20 +10003372 (conf->geo.raid_disks / conf->geo.near_copies));
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10003373
NeilBrowndafb20f2012-03-19 12:46:39 +11003374 rdev_for_each(rdev, mddev) {
NeilBrown34b343c2011-07-28 11:31:47 +10003375
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 disk_idx = rdev->raid_disk;
NeilBrownf8c9e742012-05-21 09:28:33 +10003377 if (disk_idx < 0)
3378 continue;
3379 if (disk_idx >= conf->geo.raid_disks &&
3380 disk_idx >= conf->prev.raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 continue;
3382 disk = conf->mirrors + disk_idx;
3383
NeilBrown56a2559b2011-12-23 10:17:55 +11003384 if (test_bit(Replacement, &rdev->flags)) {
3385 if (disk->replacement)
3386 goto out_free_conf;
3387 disk->replacement = rdev;
3388 } else {
3389 if (disk->rdev)
3390 goto out_free_conf;
3391 disk->rdev = rdev;
3392 }
3393
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10003394 disk_stack_limits(mddev->gendisk, rdev->bdev,
3395 rdev->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
3397 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 }
NeilBrown6d508242005-09-09 16:24:03 -07003399 /* need to check that every block has at least one working mirror */
NeilBrown700c7212011-07-27 11:00:36 +10003400 if (!enough(conf, -1)) {
NeilBrown128595e2010-05-03 14:47:14 +10003401 printk(KERN_ERR "md/raid10:%s: not enough operational mirrors.\n",
NeilBrown6d508242005-09-09 16:24:03 -07003402 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 goto out_free_conf;
3404 }
3405
3406 mddev->degraded = 0;
NeilBrownf8c9e742012-05-21 09:28:33 +10003407 for (i = 0;
3408 i < conf->geo.raid_disks
3409 || i < conf->prev.raid_disks;
3410 i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
3412 disk = conf->mirrors + i;
3413
NeilBrown56a2559b2011-12-23 10:17:55 +11003414 if (!disk->rdev && disk->replacement) {
3415 /* The replacement is all we have - use it */
3416 disk->rdev = disk->replacement;
3417 disk->replacement = NULL;
3418 clear_bit(Replacement, &disk->rdev->flags);
3419 }
3420
NeilBrown5fd6c1d2006-06-26 00:27:40 -07003421 if (!disk->rdev ||
NeilBrown2e333e82006-10-21 10:24:07 -07003422 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 disk->head_position = 0;
3424 mddev->degraded++;
Neil Brown8c2e8702008-06-28 08:30:52 +10003425 if (disk->rdev)
3426 conf->fullsync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 }
NeilBrownd890fa22011-10-26 11:54:39 +11003428 disk->recovery_disabled = mddev->recovery_disabled - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 }
3430
Andre Noll8c6ac8682009-06-18 08:48:06 +10003431 if (mddev->recovery_cp != MaxSector)
NeilBrown128595e2010-05-03 14:47:14 +10003432 printk(KERN_NOTICE "md/raid10:%s: not clean"
Andre Noll8c6ac8682009-06-18 08:48:06 +10003433 " -- starting background reconstruction\n",
3434 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 printk(KERN_INFO
NeilBrown128595e2010-05-03 14:47:14 +10003436 "md/raid10:%s: active with %d out of %d devices\n",
NeilBrown5cf00fc2012-05-21 09:28:20 +10003437 mdname(mddev), conf->geo.raid_disks - mddev->degraded,
3438 conf->geo.raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 /*
3440 * Ok, everything is just fine now
3441 */
Trela, Maciejdab8b292010-03-08 16:02:45 +11003442 mddev->dev_sectors = conf->dev_sectors;
3443 size = raid10_size(mddev, 0, 0);
3444 md_set_array_sectors(mddev, size);
3445 mddev->resync_max_sectors = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446
NeilBrown0d129222006-10-03 01:15:54 -07003447 mddev->queue->backing_dev_info.congested_fn = raid10_congested;
3448 mddev->queue->backing_dev_info.congested_data = mddev;
NeilBrown7a5febe2005-05-16 21:53:16 -07003449
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 /* Calculate max read-ahead size.
3451 * We need to readahead at least twice a whole stripe....
3452 * maybe...
3453 */
3454 {
NeilBrown5cf00fc2012-05-21 09:28:20 +10003455 int stripe = conf->geo.raid_disks *
Andre Noll9d8f0362009-06-18 08:45:01 +10003456 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
NeilBrown5cf00fc2012-05-21 09:28:20 +10003457 stripe /= conf->geo.near_copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 if (mddev->queue->backing_dev_info.ra_pages < 2* stripe)
3459 mddev->queue->backing_dev_info.ra_pages = 2* stripe;
3460 }
3461
NeilBrown050b6612012-03-19 12:46:39 +11003462 blk_queue_merge_bvec(mddev->queue, raid10_mergeable_bvec);
Martin K. Petersena91a2782011-03-17 11:11:05 +01003463
3464 if (md_integrity_register(mddev))
3465 goto out_free_conf;
3466
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 return 0;
3468
3469out_free_conf:
NeilBrown01f96c02011-09-21 15:30:20 +10003470 md_unregister_thread(&mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 if (conf->r10bio_pool)
3472 mempool_destroy(conf->r10bio_pool);
NeilBrown1345b1d2006-01-06 00:20:40 -08003473 safe_put_page(conf->tmppage);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07003474 kfree(conf->mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 kfree(conf);
3476 mddev->private = NULL;
3477out:
3478 return -EIO;
3479}
3480
NeilBrownfd01b882011-10-11 16:47:53 +11003481static int stop(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482{
NeilBrowne879a872011-10-11 16:49:02 +11003483 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
NeilBrown409c57f2009-03-31 14:39:39 +11003485 raise_barrier(conf, 0);
3486 lower_barrier(conf);
3487
NeilBrown01f96c02011-09-21 15:30:20 +10003488 md_unregister_thread(&mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
3490 if (conf->r10bio_pool)
3491 mempool_destroy(conf->r10bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07003492 kfree(conf->mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 kfree(conf);
3494 mddev->private = NULL;
3495 return 0;
3496}
3497
NeilBrownfd01b882011-10-11 16:47:53 +11003498static void raid10_quiesce(struct mddev *mddev, int state)
NeilBrown6cce3b22006-01-06 00:20:16 -08003499{
NeilBrowne879a872011-10-11 16:49:02 +11003500 struct r10conf *conf = mddev->private;
NeilBrown6cce3b22006-01-06 00:20:16 -08003501
3502 switch(state) {
3503 case 1:
3504 raise_barrier(conf, 0);
3505 break;
3506 case 0:
3507 lower_barrier(conf);
3508 break;
3509 }
NeilBrown6cce3b22006-01-06 00:20:16 -08003510}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511
NeilBrown006a09a2012-03-19 12:46:40 +11003512static int raid10_resize(struct mddev *mddev, sector_t sectors)
3513{
3514 /* Resize of 'far' arrays is not supported.
3515 * For 'near' and 'offset' arrays we can set the
3516 * number of sectors used to be an appropriate multiple
3517 * of the chunk size.
3518 * For 'offset', this is far_copies*chunksize.
3519 * For 'near' the multiplier is the LCM of
3520 * near_copies and raid_disks.
3521 * So if far_copies > 1 && !far_offset, fail.
3522 * Else find LCM(raid_disks, near_copy)*far_copies and
3523 * multiply by chunk_size. Then round to this number.
3524 * This is mostly done by raid10_size()
3525 */
3526 struct r10conf *conf = mddev->private;
3527 sector_t oldsize, size;
3528
NeilBrownf8c9e742012-05-21 09:28:33 +10003529 if (mddev->reshape_position != MaxSector)
3530 return -EBUSY;
3531
NeilBrown5cf00fc2012-05-21 09:28:20 +10003532 if (conf->geo.far_copies > 1 && !conf->geo.far_offset)
NeilBrown006a09a2012-03-19 12:46:40 +11003533 return -EINVAL;
3534
3535 oldsize = raid10_size(mddev, 0, 0);
3536 size = raid10_size(mddev, sectors, 0);
3537 md_set_array_sectors(mddev, size);
3538 if (mddev->array_sectors > size)
3539 return -EINVAL;
3540 set_capacity(mddev->gendisk, mddev->array_sectors);
3541 revalidate_disk(mddev->gendisk);
3542 if (sectors > mddev->dev_sectors &&
3543 mddev->recovery_cp > oldsize) {
3544 mddev->recovery_cp = oldsize;
3545 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
3546 }
NeilBrown6508fdb2012-05-17 10:08:45 +10003547 calc_sectors(conf, sectors);
3548 mddev->dev_sectors = conf->dev_sectors;
NeilBrown006a09a2012-03-19 12:46:40 +11003549 mddev->resync_max_sectors = size;
3550 return 0;
3551}
3552
NeilBrownfd01b882011-10-11 16:47:53 +11003553static void *raid10_takeover_raid0(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003554{
NeilBrown3cb03002011-10-11 16:45:26 +11003555 struct md_rdev *rdev;
NeilBrowne879a872011-10-11 16:49:02 +11003556 struct r10conf *conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003557
3558 if (mddev->degraded > 0) {
NeilBrown128595e2010-05-03 14:47:14 +10003559 printk(KERN_ERR "md/raid10:%s: Error: degraded raid0!\n",
3560 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11003561 return ERR_PTR(-EINVAL);
3562 }
3563
Trela, Maciejdab8b292010-03-08 16:02:45 +11003564 /* Set new parameters */
3565 mddev->new_level = 10;
3566 /* new layout: far_copies = 1, near_copies = 2 */
3567 mddev->new_layout = (1<<8) + 2;
3568 mddev->new_chunk_sectors = mddev->chunk_sectors;
3569 mddev->delta_disks = mddev->raid_disks;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003570 mddev->raid_disks *= 2;
3571 /* make sure it will be not marked as dirty */
3572 mddev->recovery_cp = MaxSector;
3573
3574 conf = setup_conf(mddev);
Krzysztof Wojcik02214dc2011-02-04 14:18:26 +01003575 if (!IS_ERR(conf)) {
NeilBrowndafb20f2012-03-19 12:46:39 +11003576 rdev_for_each(rdev, mddev)
NeilBrowne93f68a2010-06-15 09:36:03 +01003577 if (rdev->raid_disk >= 0)
3578 rdev->new_raid_disk = rdev->raid_disk * 2;
Krzysztof Wojcik02214dc2011-02-04 14:18:26 +01003579 conf->barrier = 1;
3580 }
3581
Trela, Maciejdab8b292010-03-08 16:02:45 +11003582 return conf;
3583}
3584
NeilBrownfd01b882011-10-11 16:47:53 +11003585static void *raid10_takeover(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003586{
NeilBrowne373ab12011-10-11 16:48:59 +11003587 struct r0conf *raid0_conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003588
3589 /* raid10 can take over:
3590 * raid0 - providing it has only two drives
3591 */
3592 if (mddev->level == 0) {
3593 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11003594 raid0_conf = mddev->private;
3595 if (raid0_conf->nr_strip_zones > 1) {
NeilBrown128595e2010-05-03 14:47:14 +10003596 printk(KERN_ERR "md/raid10:%s: cannot takeover raid 0"
3597 " with more than one zone.\n",
3598 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11003599 return ERR_PTR(-EINVAL);
3600 }
3601 return raid10_takeover_raid0(mddev);
3602 }
3603 return ERR_PTR(-EINVAL);
3604}
3605
NeilBrown84fc4b52011-10-11 16:49:58 +11003606static struct md_personality raid10_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607{
3608 .name = "raid10",
NeilBrown2604b702006-01-06 00:20:36 -08003609 .level = 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 .owner = THIS_MODULE,
3611 .make_request = make_request,
3612 .run = run,
3613 .stop = stop,
3614 .status = status,
3615 .error_handler = error,
3616 .hot_add_disk = raid10_add_disk,
3617 .hot_remove_disk= raid10_remove_disk,
3618 .spare_active = raid10_spare_active,
3619 .sync_request = sync_request,
NeilBrown6cce3b22006-01-06 00:20:16 -08003620 .quiesce = raid10_quiesce,
Dan Williams80c3a6c2009-03-17 18:10:40 -07003621 .size = raid10_size,
NeilBrown006a09a2012-03-19 12:46:40 +11003622 .resize = raid10_resize,
Trela, Maciejdab8b292010-03-08 16:02:45 +11003623 .takeover = raid10_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624};
3625
3626static int __init raid_init(void)
3627{
NeilBrown2604b702006-01-06 00:20:36 -08003628 return register_md_personality(&raid10_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629}
3630
3631static void raid_exit(void)
3632{
NeilBrown2604b702006-01-06 00:20:36 -08003633 unregister_md_personality(&raid10_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634}
3635
3636module_init(raid_init);
3637module_exit(raid_exit);
3638MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11003639MODULE_DESCRIPTION("RAID10 (striped mirror) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640MODULE_ALIAS("md-personality-9"); /* RAID10 */
NeilBrownd9d166c2006-01-06 00:20:51 -08003641MODULE_ALIAS("md-raid10");
NeilBrown2604b702006-01-06 00:20:36 -08003642MODULE_ALIAS("md-level-10");
NeilBrown34db0cd2011-10-11 16:50:01 +11003643
3644module_param(max_queued_requests, int, S_IRUGO|S_IWUSR);