blob: 2372926dc559a0e3b77b96bec99d743041a8160b [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>
NeilBrown3ea7daa2012-05-22 13:53:47 +100027#include <linux/kthread.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110028#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110029#include "raid10.h"
Trela, Maciejdab8b292010-03-08 16:02:45 +110030#include "raid0.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110031#include "bitmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/*
34 * RAID10 provides a combination of RAID0 and RAID1 functionality.
35 * The layout of data is defined by
36 * chunk_size
37 * raid_disks
38 * near_copies (stored in low byte of layout)
39 * far_copies (stored in second byte of layout)
NeilBrownc93983b2006-06-26 00:27:41 -070040 * far_offset (stored in bit 16 of layout )
Jonathan Brassow475901a2013-02-21 13:28:10 +110041 * use_far_sets (stored in bit 17 of layout )
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 *
Jonathan Brassow475901a2013-02-21 13:28:10 +110043 * The data to be stored is divided into chunks using chunksize. Each device
44 * is divided into far_copies sections. In each section, chunks are laid out
45 * in a style similar to raid0, but near_copies copies of each chunk is stored
46 * (each on a different drive). The starting device for each section is offset
47 * near_copies from the starting device of the previous section. Thus there
48 * are (near_copies * far_copies) of each chunk, and each is on a different
49 * drive. near_copies and far_copies must be at least one, and their product
50 * is at most raid_disks.
NeilBrownc93983b2006-06-26 00:27:41 -070051 *
52 * If far_offset is true, then the far_copies are handled a bit differently.
Jonathan Brassow475901a2013-02-21 13:28:10 +110053 * The copies are still in different stripes, but instead of being very far
54 * apart on disk, there are adjacent stripes.
55 *
56 * The far and offset algorithms are handled slightly differently if
57 * 'use_far_sets' is true. In this case, the array's devices are grouped into
58 * sets that are (near_copies * far_copies) in size. The far copied stripes
59 * are still shifted by 'near_copies' devices, but this shifting stays confined
60 * to the set rather than the entire array. This is done to improve the number
61 * of device combinations that can fail without causing the array to fail.
62 * Example 'far' algorithm w/o 'use_far_sets' (each letter represents a chunk
63 * on a device):
64 * A B C D A B C D E
65 * ... ...
66 * D A B C E A B C D
67 * Example 'far' algorithm w/ 'use_far_sets' enabled (sets illustrated w/ []'s):
68 * [A B] [C D] [A B] [C D E]
69 * |...| |...| |...| | ... |
70 * [B A] [D C] [B A] [E C D]
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 */
72
73/*
74 * Number of guaranteed r10bios in case of extreme VM load:
75 */
76#define NR_RAID10_BIOS 256
77
Jonathan Brassow473e87c2012-07-31 10:03:52 +100078/* when we get a read error on a read-only array, we redirect to another
79 * device without failing the first device, or trying to over-write to
80 * correct the read error. To keep track of bad blocks on a per-bio
81 * level, we store IO_BLOCKED in the appropriate 'bios' pointer
82 */
83#define IO_BLOCKED ((struct bio *)1)
84/* When we successfully write to a known bad-block, we need to remove the
85 * bad-block marking which must be done from process context. So we record
86 * the success by setting devs[n].bio to IO_MADE_GOOD
87 */
88#define IO_MADE_GOOD ((struct bio *)2)
89
90#define BIO_SPECIAL(bio) ((unsigned long)bio <= 2)
91
92/* When there are this many requests queued to be written by
NeilBrown34db0cd2011-10-11 16:50:01 +110093 * the raid10 thread, we become 'congested' to provide back-pressure
94 * for writeback.
95 */
96static int max_queued_requests = 1024;
97
NeilBrowne879a872011-10-11 16:49:02 +110098static void allow_barrier(struct r10conf *conf);
99static void lower_barrier(struct r10conf *conf);
NeilBrownfae8cc52012-02-14 11:10:10 +1100100static int enough(struct r10conf *conf, int ignore);
NeilBrown3ea7daa2012-05-22 13:53:47 +1000101static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr,
102 int *skipped);
103static void reshape_request_write(struct mddev *mddev, struct r10bio *r10_bio);
104static void end_reshape_write(struct bio *bio, int error);
105static void end_reshape(struct r10conf *conf);
NeilBrown0a27ec92006-01-06 00:20:13 -0800106
Al Virodd0fc662005-10-07 07:46:04 +0100107static void * r10bio_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
NeilBrowne879a872011-10-11 16:49:02 +1100109 struct r10conf *conf = data;
NeilBrown9f2c9d12011-10-11 16:48:43 +1100110 int size = offsetof(struct r10bio, devs[conf->copies]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
NeilBrown69335ef2011-12-23 10:17:54 +1100112 /* allocate a r10bio with room for raid_disks entries in the
113 * bios array */
Jens Axboe7eaceac2011-03-10 08:52:07 +0100114 return kzalloc(size, gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117static void r10bio_pool_free(void *r10_bio, void *data)
118{
119 kfree(r10_bio);
120}
121
NeilBrown0310fa22008-08-05 15:54:14 +1000122/* Maximum size of each resync request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define RESYNC_BLOCK_SIZE (64*1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define RESYNC_PAGES ((RESYNC_BLOCK_SIZE + PAGE_SIZE-1) / PAGE_SIZE)
NeilBrown0310fa22008-08-05 15:54:14 +1000125/* amount of memory to reserve for resync requests */
126#define RESYNC_WINDOW (1024*1024)
127/* maximum number of concurrent requests, memory permitting */
128#define RESYNC_DEPTH (32*1024*1024/RESYNC_BLOCK_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/*
131 * When performing a resync, we need to read and compare, so
132 * we need as many pages are there are copies.
133 * When performing a recovery, we need 2 bios, one for read,
134 * one for write (we recover only one drive per r10buf)
135 *
136 */
Al Virodd0fc662005-10-07 07:46:04 +0100137static void * r10buf_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
NeilBrowne879a872011-10-11 16:49:02 +1100139 struct r10conf *conf = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 struct page *page;
NeilBrown9f2c9d12011-10-11 16:48:43 +1100141 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 struct bio *bio;
143 int i, j;
144 int nalloc;
145
146 r10_bio = r10bio_pool_alloc(gfp_flags, conf);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100147 if (!r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
NeilBrown3ea7daa2012-05-22 13:53:47 +1000150 if (test_bit(MD_RECOVERY_SYNC, &conf->mddev->recovery) ||
151 test_bit(MD_RECOVERY_RESHAPE, &conf->mddev->recovery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 nalloc = conf->copies; /* resync */
153 else
154 nalloc = 2; /* recovery */
155
156 /*
157 * Allocate bios.
158 */
159 for (j = nalloc ; j-- ; ) {
NeilBrown67465572010-10-26 17:33:54 +1100160 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (!bio)
162 goto out_free_bio;
163 r10_bio->devs[j].bio = bio;
NeilBrown69335ef2011-12-23 10:17:54 +1100164 if (!conf->have_replacement)
165 continue;
166 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
167 if (!bio)
168 goto out_free_bio;
169 r10_bio->devs[j].repl_bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
171 /*
172 * Allocate RESYNC_PAGES data pages and attach them
173 * where needed.
174 */
175 for (j = 0 ; j < nalloc; j++) {
NeilBrown69335ef2011-12-23 10:17:54 +1100176 struct bio *rbio = r10_bio->devs[j].repl_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 bio = r10_bio->devs[j].bio;
178 for (i = 0; i < RESYNC_PAGES; i++) {
NeilBrown3ea7daa2012-05-22 13:53:47 +1000179 if (j > 0 && !test_bit(MD_RECOVERY_SYNC,
180 &conf->mddev->recovery)) {
181 /* we can share bv_page's during recovery
182 * and reshape */
Namhyung Kimc65060a2011-07-18 17:38:49 +1000183 struct bio *rbio = r10_bio->devs[0].bio;
184 page = rbio->bi_io_vec[i].bv_page;
185 get_page(page);
186 } else
187 page = alloc_page(gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (unlikely(!page))
189 goto out_free_pages;
190
191 bio->bi_io_vec[i].bv_page = page;
NeilBrown69335ef2011-12-23 10:17:54 +1100192 if (rbio)
193 rbio->bi_io_vec[i].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195 }
196
197 return r10_bio;
198
199out_free_pages:
200 for ( ; i > 0 ; i--)
NeilBrown1345b1d2006-01-06 00:20:40 -0800201 safe_put_page(bio->bi_io_vec[i-1].bv_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 while (j--)
203 for (i = 0; i < RESYNC_PAGES ; i++)
NeilBrown1345b1d2006-01-06 00:20:40 -0800204 safe_put_page(r10_bio->devs[j].bio->bi_io_vec[i].bv_page);
majianpeng5fdd2cf2012-05-22 13:55:03 +1000205 j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206out_free_bio:
majianpeng5fdd2cf2012-05-22 13:55:03 +1000207 for ( ; j < nalloc; j++) {
208 if (r10_bio->devs[j].bio)
209 bio_put(r10_bio->devs[j].bio);
NeilBrown69335ef2011-12-23 10:17:54 +1100210 if (r10_bio->devs[j].repl_bio)
211 bio_put(r10_bio->devs[j].repl_bio);
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 r10bio_pool_free(r10_bio, conf);
214 return NULL;
215}
216
217static void r10buf_pool_free(void *__r10_bio, void *data)
218{
219 int i;
NeilBrowne879a872011-10-11 16:49:02 +1100220 struct r10conf *conf = data;
NeilBrown9f2c9d12011-10-11 16:48:43 +1100221 struct r10bio *r10bio = __r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 int j;
223
224 for (j=0; j < conf->copies; j++) {
225 struct bio *bio = r10bio->devs[j].bio;
226 if (bio) {
227 for (i = 0; i < RESYNC_PAGES; i++) {
NeilBrown1345b1d2006-01-06 00:20:40 -0800228 safe_put_page(bio->bi_io_vec[i].bv_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 bio->bi_io_vec[i].bv_page = NULL;
230 }
231 bio_put(bio);
232 }
NeilBrown69335ef2011-12-23 10:17:54 +1100233 bio = r10bio->devs[j].repl_bio;
234 if (bio)
235 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237 r10bio_pool_free(r10bio, conf);
238}
239
NeilBrowne879a872011-10-11 16:49:02 +1100240static void put_all_bios(struct r10conf *conf, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 int i;
243
244 for (i = 0; i < conf->copies; i++) {
245 struct bio **bio = & r10_bio->devs[i].bio;
NeilBrown749c55e2011-07-28 11:39:24 +1000246 if (!BIO_SPECIAL(*bio))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 bio_put(*bio);
248 *bio = NULL;
NeilBrown69335ef2011-12-23 10:17:54 +1100249 bio = &r10_bio->devs[i].repl_bio;
250 if (r10_bio->read_slot < 0 && !BIO_SPECIAL(*bio))
251 bio_put(*bio);
252 *bio = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254}
255
NeilBrown9f2c9d12011-10-11 16:48:43 +1100256static void free_r10bio(struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
NeilBrowne879a872011-10-11 16:49:02 +1100258 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 put_all_bios(conf, r10_bio);
261 mempool_free(r10_bio, conf->r10bio_pool);
262}
263
NeilBrown9f2c9d12011-10-11 16:48:43 +1100264static void put_buf(struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
NeilBrowne879a872011-10-11 16:49:02 +1100266 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 mempool_free(r10_bio, conf->r10buf_pool);
269
NeilBrown0a27ec92006-01-06 00:20:13 -0800270 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
NeilBrown9f2c9d12011-10-11 16:48:43 +1100273static void reschedule_retry(struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 unsigned long flags;
NeilBrownfd01b882011-10-11 16:47:53 +1100276 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +1100277 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 spin_lock_irqsave(&conf->device_lock, flags);
280 list_add(&r10_bio->retry_list, &conf->retry_list);
NeilBrown4443ae12006-01-06 00:20:28 -0800281 conf->nr_queued ++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 spin_unlock_irqrestore(&conf->device_lock, flags);
283
Arthur Jones388667b2008-07-25 12:03:38 -0700284 /* wake up frozen array... */
285 wake_up(&conf->wait_barrier);
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 md_wakeup_thread(mddev->thread);
288}
289
290/*
291 * raid_end_bio_io() is called when we have finished servicing a mirrored
292 * operation and are ready to return a success/failure code to the buffer
293 * cache layer.
294 */
NeilBrown9f2c9d12011-10-11 16:48:43 +1100295static void raid_end_bio_io(struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 struct bio *bio = r10_bio->master_bio;
NeilBrown856e08e2011-07-28 11:39:23 +1000298 int done;
NeilBrowne879a872011-10-11 16:49:02 +1100299 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
NeilBrown856e08e2011-07-28 11:39:23 +1000301 if (bio->bi_phys_segments) {
302 unsigned long flags;
303 spin_lock_irqsave(&conf->device_lock, flags);
304 bio->bi_phys_segments--;
305 done = (bio->bi_phys_segments == 0);
306 spin_unlock_irqrestore(&conf->device_lock, flags);
307 } else
308 done = 1;
309 if (!test_bit(R10BIO_Uptodate, &r10_bio->state))
310 clear_bit(BIO_UPTODATE, &bio->bi_flags);
311 if (done) {
312 bio_endio(bio, 0);
313 /*
314 * Wake up any possible resync thread that waits for the device
315 * to go idle.
316 */
317 allow_barrier(conf);
318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 free_r10bio(r10_bio);
320}
321
322/*
323 * Update disk head position estimator based on IRQ completion info.
324 */
NeilBrown9f2c9d12011-10-11 16:48:43 +1100325static inline void update_head_pos(int slot, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
NeilBrowne879a872011-10-11 16:49:02 +1100327 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 conf->mirrors[r10_bio->devs[slot].devnum].head_position =
330 r10_bio->devs[slot].addr + (r10_bio->sectors);
331}
332
Namhyung Kim778ca012011-07-18 17:38:47 +1000333/*
334 * Find the disk number which triggered given bio
335 */
NeilBrowne879a872011-10-11 16:49:02 +1100336static int find_bio_disk(struct r10conf *conf, struct r10bio *r10_bio,
NeilBrown69335ef2011-12-23 10:17:54 +1100337 struct bio *bio, int *slotp, int *replp)
Namhyung Kim778ca012011-07-18 17:38:47 +1000338{
339 int slot;
NeilBrown69335ef2011-12-23 10:17:54 +1100340 int repl = 0;
Namhyung Kim778ca012011-07-18 17:38:47 +1000341
NeilBrown69335ef2011-12-23 10:17:54 +1100342 for (slot = 0; slot < conf->copies; slot++) {
Namhyung Kim778ca012011-07-18 17:38:47 +1000343 if (r10_bio->devs[slot].bio == bio)
344 break;
NeilBrown69335ef2011-12-23 10:17:54 +1100345 if (r10_bio->devs[slot].repl_bio == bio) {
346 repl = 1;
347 break;
348 }
349 }
Namhyung Kim778ca012011-07-18 17:38:47 +1000350
351 BUG_ON(slot == conf->copies);
352 update_head_pos(slot, r10_bio);
353
NeilBrown749c55e2011-07-28 11:39:24 +1000354 if (slotp)
355 *slotp = slot;
NeilBrown69335ef2011-12-23 10:17:54 +1100356 if (replp)
357 *replp = repl;
Namhyung Kim778ca012011-07-18 17:38:47 +1000358 return r10_bio->devs[slot].devnum;
359}
360
NeilBrown6712ecf2007-09-27 12:47:43 +0200361static void raid10_end_read_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9f2c9d12011-10-11 16:48:43 +1100364 struct r10bio *r10_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 int slot, dev;
NeilBrownabbf0982011-12-23 10:17:54 +1100366 struct md_rdev *rdev;
NeilBrowne879a872011-10-11 16:49:02 +1100367 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 slot = r10_bio->read_slot;
371 dev = r10_bio->devs[slot].devnum;
NeilBrownabbf0982011-12-23 10:17:54 +1100372 rdev = r10_bio->devs[slot].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 /*
374 * this branch is our 'one mirror IO has finished' event handler:
375 */
NeilBrown4443ae12006-01-06 00:20:28 -0800376 update_head_pos(slot, r10_bio);
377
378 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 /*
380 * Set R10BIO_Uptodate in our master bio, so that
381 * we will return a good error code to the higher
382 * levels even if IO on some other mirrored buffer fails.
383 *
384 * The 'master' represents the composite IO operation to
385 * user-side. So if something waits for IO, then it will
386 * wait for the 'master' bio.
387 */
388 set_bit(R10BIO_Uptodate, &r10_bio->state);
NeilBrownfae8cc52012-02-14 11:10:10 +1100389 } else {
390 /* If all other devices that store this block have
391 * failed, we want to return the error upwards rather
392 * than fail the last device. Here we redefine
393 * "uptodate" to mean "Don't want to retry"
394 */
395 unsigned long flags;
396 spin_lock_irqsave(&conf->device_lock, flags);
397 if (!enough(conf, rdev->raid_disk))
398 uptodate = 1;
399 spin_unlock_irqrestore(&conf->device_lock, flags);
400 }
401 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 raid_end_bio_io(r10_bio);
NeilBrownabbf0982011-12-23 10:17:54 +1100403 rdev_dec_pending(rdev, conf->mddev);
NeilBrown4443ae12006-01-06 00:20:28 -0800404 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 /*
NeilBrown7c4e06f2011-05-11 14:53:17 +1000406 * oops, read error - keep the refcount on the rdev
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 */
408 char b[BDEVNAME_SIZE];
Christian Dietrich8bda4702011-07-27 11:00:36 +1000409 printk_ratelimited(KERN_ERR
410 "md/raid10:%s: %s: rescheduling sector %llu\n",
411 mdname(conf->mddev),
NeilBrownabbf0982011-12-23 10:17:54 +1100412 bdevname(rdev->bdev, b),
Christian Dietrich8bda4702011-07-27 11:00:36 +1000413 (unsigned long long)r10_bio->sector);
NeilBrown856e08e2011-07-28 11:39:23 +1000414 set_bit(R10BIO_ReadError, &r10_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 reschedule_retry(r10_bio);
416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
NeilBrown9f2c9d12011-10-11 16:48:43 +1100419static void close_write(struct r10bio *r10_bio)
NeilBrownbd870a12011-07-28 11:39:24 +1000420{
421 /* clear the bitmap if all writes complete successfully */
422 bitmap_endwrite(r10_bio->mddev->bitmap, r10_bio->sector,
423 r10_bio->sectors,
424 !test_bit(R10BIO_Degraded, &r10_bio->state),
425 0);
426 md_write_end(r10_bio->mddev);
427}
428
NeilBrown9f2c9d12011-10-11 16:48:43 +1100429static void one_write_done(struct r10bio *r10_bio)
NeilBrown19d5f832011-09-10 17:21:17 +1000430{
431 if (atomic_dec_and_test(&r10_bio->remaining)) {
432 if (test_bit(R10BIO_WriteError, &r10_bio->state))
433 reschedule_retry(r10_bio);
434 else {
435 close_write(r10_bio);
436 if (test_bit(R10BIO_MadeGood, &r10_bio->state))
437 reschedule_retry(r10_bio);
438 else
439 raid_end_bio_io(r10_bio);
440 }
441 }
442}
443
NeilBrown6712ecf2007-09-27 12:47:43 +0200444static void raid10_end_write_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9f2c9d12011-10-11 16:48:43 +1100447 struct r10bio *r10_bio = bio->bi_private;
Namhyung Kim778ca012011-07-18 17:38:47 +1000448 int dev;
NeilBrown749c55e2011-07-28 11:39:24 +1000449 int dec_rdev = 1;
NeilBrowne879a872011-10-11 16:49:02 +1100450 struct r10conf *conf = r10_bio->mddev->private;
NeilBrown475b0322011-12-23 10:17:55 +1100451 int slot, repl;
NeilBrown4ca40c22011-12-23 10:17:55 +1100452 struct md_rdev *rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
NeilBrown475b0322011-12-23 10:17:55 +1100454 dev = find_bio_disk(conf, r10_bio, bio, &slot, &repl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
NeilBrown475b0322011-12-23 10:17:55 +1100456 if (repl)
457 rdev = conf->mirrors[dev].replacement;
NeilBrown4ca40c22011-12-23 10:17:55 +1100458 if (!rdev) {
459 smp_rmb();
460 repl = 0;
NeilBrown475b0322011-12-23 10:17:55 +1100461 rdev = conf->mirrors[dev].rdev;
NeilBrown4ca40c22011-12-23 10:17:55 +1100462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 /*
464 * this branch is our 'one mirror IO has finished' event handler:
465 */
NeilBrown6cce3b22006-01-06 00:20:16 -0800466 if (!uptodate) {
NeilBrown475b0322011-12-23 10:17:55 +1100467 if (repl)
468 /* Never record new bad blocks to replacement,
469 * just fail it.
470 */
471 md_error(rdev->mddev, rdev);
472 else {
473 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +1100474 if (!test_and_set_bit(WantReplacement, &rdev->flags))
475 set_bit(MD_RECOVERY_NEEDED,
476 &rdev->mddev->recovery);
NeilBrown475b0322011-12-23 10:17:55 +1100477 set_bit(R10BIO_WriteError, &r10_bio->state);
478 dec_rdev = 0;
479 }
NeilBrown749c55e2011-07-28 11:39:24 +1000480 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 /*
482 * Set R10BIO_Uptodate in our master bio, so that
483 * we will return a good error code for to the higher
484 * levels even if IO on some other mirrored buffer fails.
485 *
486 * The 'master' represents the composite IO operation to
487 * user-side. So if something waits for IO, then it will
488 * wait for the 'master' bio.
489 */
NeilBrown749c55e2011-07-28 11:39:24 +1000490 sector_t first_bad;
491 int bad_sectors;
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 set_bit(R10BIO_Uptodate, &r10_bio->state);
494
NeilBrown749c55e2011-07-28 11:39:24 +1000495 /* Maybe we can clear some bad blocks. */
NeilBrown475b0322011-12-23 10:17:55 +1100496 if (is_badblock(rdev,
NeilBrown749c55e2011-07-28 11:39:24 +1000497 r10_bio->devs[slot].addr,
498 r10_bio->sectors,
499 &first_bad, &bad_sectors)) {
500 bio_put(bio);
NeilBrown475b0322011-12-23 10:17:55 +1100501 if (repl)
502 r10_bio->devs[slot].repl_bio = IO_MADE_GOOD;
503 else
504 r10_bio->devs[slot].bio = IO_MADE_GOOD;
NeilBrown749c55e2011-07-28 11:39:24 +1000505 dec_rdev = 0;
506 set_bit(R10BIO_MadeGood, &r10_bio->state);
507 }
508 }
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 /*
511 *
512 * Let's see if all mirrored write operations have finished
513 * already.
514 */
NeilBrown19d5f832011-09-10 17:21:17 +1000515 one_write_done(r10_bio);
NeilBrown749c55e2011-07-28 11:39:24 +1000516 if (dec_rdev)
NeilBrown884162d2012-11-22 15:12:09 +1100517 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/*
521 * RAID10 layout manager
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300522 * As well as the chunksize and raid_disks count, there are two
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 * parameters: near_copies and far_copies.
524 * near_copies * far_copies must be <= raid_disks.
525 * Normally one of these will be 1.
526 * If both are 1, we get raid0.
527 * If near_copies == raid_disks, we get raid1.
528 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300529 * Chunks are laid out in raid0 style with near_copies copies of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * first chunk, followed by near_copies copies of the next chunk and
531 * so on.
532 * If far_copies > 1, then after 1/far_copies of the array has been assigned
533 * as described above, we start again with a device offset of near_copies.
534 * So we effectively have another copy of the whole array further down all
535 * the drives, but with blocks on different drives.
536 * With this layout, and block is never stored twice on the one device.
537 *
538 * raid10_find_phys finds the sector offset of a given virtual sector
NeilBrownc93983b2006-06-26 00:27:41 -0700539 * on each device that it is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 *
541 * raid10_find_virt does the reverse mapping, from a device and a
542 * sector offset to a virtual address
543 */
544
NeilBrownf8c9e742012-05-21 09:28:33 +1000545static void __raid10_find_phys(struct geom *geo, struct r10bio *r10bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 int n,f;
548 sector_t sector;
549 sector_t chunk;
550 sector_t stripe;
551 int dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 int slot = 0;
Jonathan Brassow9a3152a2013-02-21 13:28:10 +1100553 int last_far_set_start, last_far_set_size;
554
555 last_far_set_start = (geo->raid_disks / geo->far_set_size) - 1;
556 last_far_set_start *= geo->far_set_size;
557
558 last_far_set_size = geo->far_set_size;
559 last_far_set_size += (geo->raid_disks % geo->far_set_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 /* now calculate first sector/dev */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000562 chunk = r10bio->sector >> geo->chunk_shift;
563 sector = r10bio->sector & geo->chunk_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
NeilBrown5cf00fc2012-05-21 09:28:20 +1000565 chunk *= geo->near_copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 stripe = chunk;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000567 dev = sector_div(stripe, geo->raid_disks);
568 if (geo->far_offset)
569 stripe *= geo->far_copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
NeilBrown5cf00fc2012-05-21 09:28:20 +1000571 sector += stripe << geo->chunk_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 /* and calculate all the others */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000574 for (n = 0; n < geo->near_copies; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 int d = dev;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100576 int set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 sector_t s = sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 r10bio->devs[slot].devnum = d;
Jonathan Brassow4c0ca262013-02-21 13:28:09 +1100579 r10bio->devs[slot].addr = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 slot++;
581
NeilBrown5cf00fc2012-05-21 09:28:20 +1000582 for (f = 1; f < geo->far_copies; f++) {
Jonathan Brassow475901a2013-02-21 13:28:10 +1100583 set = d / geo->far_set_size;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000584 d += geo->near_copies;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100585
Jonathan Brassow9a3152a2013-02-21 13:28:10 +1100586 if ((geo->raid_disks % geo->far_set_size) &&
587 (d > last_far_set_start)) {
588 d -= last_far_set_start;
589 d %= last_far_set_size;
590 d += last_far_set_start;
591 } else {
592 d %= geo->far_set_size;
593 d += geo->far_set_size * set;
594 }
NeilBrown5cf00fc2012-05-21 09:28:20 +1000595 s += geo->stride;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 r10bio->devs[slot].devnum = d;
597 r10bio->devs[slot].addr = s;
598 slot++;
599 }
600 dev++;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000601 if (dev >= geo->raid_disks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 dev = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000603 sector += (geo->chunk_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605 }
NeilBrownf8c9e742012-05-21 09:28:33 +1000606}
607
608static void raid10_find_phys(struct r10conf *conf, struct r10bio *r10bio)
609{
610 struct geom *geo = &conf->geo;
611
612 if (conf->reshape_progress != MaxSector &&
613 ((r10bio->sector >= conf->reshape_progress) !=
614 conf->mddev->reshape_backwards)) {
615 set_bit(R10BIO_Previous, &r10bio->state);
616 geo = &conf->prev;
617 } else
618 clear_bit(R10BIO_Previous, &r10bio->state);
619
620 __raid10_find_phys(geo, r10bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
NeilBrowne879a872011-10-11 16:49:02 +1100623static sector_t raid10_find_virt(struct r10conf *conf, sector_t sector, int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 sector_t offset, chunk, vchunk;
NeilBrownf8c9e742012-05-21 09:28:33 +1000626 /* Never use conf->prev as this is only called during resync
627 * or recovery, so reshape isn't happening
628 */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000629 struct geom *geo = &conf->geo;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100630 int far_set_start = (dev / geo->far_set_size) * geo->far_set_size;
631 int far_set_size = geo->far_set_size;
Jonathan Brassow9a3152a2013-02-21 13:28:10 +1100632 int last_far_set_start;
633
634 if (geo->raid_disks % geo->far_set_size) {
635 last_far_set_start = (geo->raid_disks / geo->far_set_size) - 1;
636 last_far_set_start *= geo->far_set_size;
637
638 if (dev >= last_far_set_start) {
639 far_set_size = geo->far_set_size;
640 far_set_size += (geo->raid_disks % geo->far_set_size);
641 far_set_start = last_far_set_start;
642 }
643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
NeilBrown5cf00fc2012-05-21 09:28:20 +1000645 offset = sector & geo->chunk_mask;
646 if (geo->far_offset) {
NeilBrownc93983b2006-06-26 00:27:41 -0700647 int fc;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000648 chunk = sector >> geo->chunk_shift;
649 fc = sector_div(chunk, geo->far_copies);
650 dev -= fc * geo->near_copies;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100651 if (dev < far_set_start)
652 dev += far_set_size;
NeilBrownc93983b2006-06-26 00:27:41 -0700653 } else {
NeilBrown5cf00fc2012-05-21 09:28:20 +1000654 while (sector >= geo->stride) {
655 sector -= geo->stride;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100656 if (dev < (geo->near_copies + far_set_start))
657 dev += far_set_size - geo->near_copies;
NeilBrownc93983b2006-06-26 00:27:41 -0700658 else
NeilBrown5cf00fc2012-05-21 09:28:20 +1000659 dev -= geo->near_copies;
NeilBrownc93983b2006-06-26 00:27:41 -0700660 }
NeilBrown5cf00fc2012-05-21 09:28:20 +1000661 chunk = sector >> geo->chunk_shift;
NeilBrownc93983b2006-06-26 00:27:41 -0700662 }
NeilBrown5cf00fc2012-05-21 09:28:20 +1000663 vchunk = chunk * geo->raid_disks + dev;
664 sector_div(vchunk, geo->near_copies);
665 return (vchunk << geo->chunk_shift) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
668/**
669 * raid10_mergeable_bvec -- tell bio layer if a two requests can be merged
670 * @q: request queue
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200671 * @bvm: properties of new bio
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 * @biovec: the request that could be merged to it.
673 *
674 * Return amount of bytes we can accept at this offset
NeilBrown050b6612012-03-19 12:46:39 +1100675 * This requires checking for end-of-chunk if near_copies != raid_disks,
676 * and for subordinate merge_bvec_fns if merge_check_needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200678static int raid10_mergeable_bvec(struct request_queue *q,
679 struct bvec_merge_data *bvm,
680 struct bio_vec *biovec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
NeilBrownfd01b882011-10-11 16:47:53 +1100682 struct mddev *mddev = q->queuedata;
NeilBrown050b6612012-03-19 12:46:39 +1100683 struct r10conf *conf = mddev->private;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200684 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 int max;
NeilBrown3ea7daa2012-05-22 13:53:47 +1000686 unsigned int chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200687 unsigned int bio_sectors = bvm->bi_size >> 9;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000688 struct geom *geo = &conf->geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
NeilBrown3ea7daa2012-05-22 13:53:47 +1000690 chunk_sectors = (conf->geo.chunk_mask & conf->prev.chunk_mask) + 1;
NeilBrownf8c9e742012-05-21 09:28:33 +1000691 if (conf->reshape_progress != MaxSector &&
692 ((sector >= conf->reshape_progress) !=
693 conf->mddev->reshape_backwards))
694 geo = &conf->prev;
695
NeilBrown5cf00fc2012-05-21 09:28:20 +1000696 if (geo->near_copies < geo->raid_disks) {
NeilBrown050b6612012-03-19 12:46:39 +1100697 max = (chunk_sectors - ((sector & (chunk_sectors - 1))
698 + bio_sectors)) << 9;
699 if (max < 0)
700 /* bio_add cannot handle a negative return */
701 max = 0;
702 if (max <= biovec->bv_len && bio_sectors == 0)
703 return biovec->bv_len;
704 } else
705 max = biovec->bv_len;
706
707 if (mddev->merge_check_needed) {
NeilBrowne0ee7782012-08-18 09:51:42 +1000708 struct {
709 struct r10bio r10_bio;
710 struct r10dev devs[conf->copies];
711 } on_stack;
712 struct r10bio *r10_bio = &on_stack.r10_bio;
NeilBrown050b6612012-03-19 12:46:39 +1100713 int s;
NeilBrownf8c9e742012-05-21 09:28:33 +1000714 if (conf->reshape_progress != MaxSector) {
715 /* Cannot give any guidance during reshape */
716 if (max <= biovec->bv_len && bio_sectors == 0)
717 return biovec->bv_len;
718 return 0;
719 }
NeilBrowne0ee7782012-08-18 09:51:42 +1000720 r10_bio->sector = sector;
721 raid10_find_phys(conf, r10_bio);
NeilBrown050b6612012-03-19 12:46:39 +1100722 rcu_read_lock();
723 for (s = 0; s < conf->copies; s++) {
NeilBrowne0ee7782012-08-18 09:51:42 +1000724 int disk = r10_bio->devs[s].devnum;
NeilBrown050b6612012-03-19 12:46:39 +1100725 struct md_rdev *rdev = rcu_dereference(
726 conf->mirrors[disk].rdev);
727 if (rdev && !test_bit(Faulty, &rdev->flags)) {
728 struct request_queue *q =
729 bdev_get_queue(rdev->bdev);
730 if (q->merge_bvec_fn) {
NeilBrowne0ee7782012-08-18 09:51:42 +1000731 bvm->bi_sector = r10_bio->devs[s].addr
NeilBrown050b6612012-03-19 12:46:39 +1100732 + rdev->data_offset;
733 bvm->bi_bdev = rdev->bdev;
734 max = min(max, q->merge_bvec_fn(
735 q, bvm, biovec));
736 }
737 }
738 rdev = rcu_dereference(conf->mirrors[disk].replacement);
739 if (rdev && !test_bit(Faulty, &rdev->flags)) {
740 struct request_queue *q =
741 bdev_get_queue(rdev->bdev);
742 if (q->merge_bvec_fn) {
NeilBrowne0ee7782012-08-18 09:51:42 +1000743 bvm->bi_sector = r10_bio->devs[s].addr
NeilBrown050b6612012-03-19 12:46:39 +1100744 + rdev->data_offset;
745 bvm->bi_bdev = rdev->bdev;
746 max = min(max, q->merge_bvec_fn(
747 q, bvm, biovec));
748 }
749 }
750 }
751 rcu_read_unlock();
752 }
753 return max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
756/*
757 * This routine returns the disk from which the requested read should
758 * be done. There is a per-array 'next expected sequential IO' sector
759 * number - if this matches on the next IO then we use the last disk.
760 * There is also a per-disk 'last know head position' sector that is
761 * maintained from IRQ contexts, both the normal and the resync IO
762 * completion handlers update this position correctly. If there is no
763 * perfect sequential match then we pick the disk whose head is closest.
764 *
765 * If there are 2 mirrors in the same 2 devices, performance degrades
766 * because position is mirror, not device based.
767 *
768 * The rdev for the device selected will have nr_pending incremented.
769 */
770
771/*
772 * FIXME: possibly should rethink readbalancing and do it differently
773 * depending on near_copies / far_copies geometry.
774 */
NeilBrown96c3fd12011-12-23 10:17:54 +1100775static struct md_rdev *read_balance(struct r10conf *conf,
776 struct r10bio *r10_bio,
777 int *max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000779 const sector_t this_sector = r10_bio->sector;
NeilBrown56d99122011-05-11 14:27:03 +1000780 int disk, slot;
NeilBrown856e08e2011-07-28 11:39:23 +1000781 int sectors = r10_bio->sectors;
782 int best_good_sectors;
NeilBrown56d99122011-05-11 14:27:03 +1000783 sector_t new_distance, best_dist;
Jonathan Brassow3bbae042012-07-31 10:03:52 +1000784 struct md_rdev *best_rdev, *rdev = NULL;
NeilBrown56d99122011-05-11 14:27:03 +1000785 int do_balance;
786 int best_slot;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000787 struct geom *geo = &conf->geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 raid10_find_phys(conf, r10_bio);
790 rcu_read_lock();
NeilBrown56d99122011-05-11 14:27:03 +1000791retry:
NeilBrown856e08e2011-07-28 11:39:23 +1000792 sectors = r10_bio->sectors;
NeilBrown56d99122011-05-11 14:27:03 +1000793 best_slot = -1;
NeilBrownabbf0982011-12-23 10:17:54 +1100794 best_rdev = NULL;
NeilBrown56d99122011-05-11 14:27:03 +1000795 best_dist = MaxSector;
NeilBrown856e08e2011-07-28 11:39:23 +1000796 best_good_sectors = 0;
NeilBrown56d99122011-05-11 14:27:03 +1000797 do_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 /*
799 * Check if we can balance. We can balance on the whole
NeilBrown6cce3b22006-01-06 00:20:16 -0800800 * device if no resync is going on (recovery is ok), or below
801 * the resync window. We take the first readable disk when
802 * above the resync window.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 */
804 if (conf->mddev->recovery_cp < MaxSector
NeilBrown56d99122011-05-11 14:27:03 +1000805 && (this_sector + sectors >= conf->next_resync))
806 do_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
NeilBrown56d99122011-05-11 14:27:03 +1000808 for (slot = 0; slot < conf->copies ; slot++) {
NeilBrown856e08e2011-07-28 11:39:23 +1000809 sector_t first_bad;
810 int bad_sectors;
811 sector_t dev_sector;
812
NeilBrown56d99122011-05-11 14:27:03 +1000813 if (r10_bio->devs[slot].bio == IO_BLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 continue;
NeilBrown56d99122011-05-11 14:27:03 +1000815 disk = r10_bio->devs[slot].devnum;
NeilBrownabbf0982011-12-23 10:17:54 +1100816 rdev = rcu_dereference(conf->mirrors[disk].replacement);
817 if (rdev == NULL || test_bit(Faulty, &rdev->flags) ||
NeilBrown050b6612012-03-19 12:46:39 +1100818 test_bit(Unmerged, &rdev->flags) ||
NeilBrownabbf0982011-12-23 10:17:54 +1100819 r10_bio->devs[slot].addr + sectors > rdev->recovery_offset)
820 rdev = rcu_dereference(conf->mirrors[disk].rdev);
NeilBrown050b6612012-03-19 12:46:39 +1100821 if (rdev == NULL ||
822 test_bit(Faulty, &rdev->flags) ||
823 test_bit(Unmerged, &rdev->flags))
NeilBrownabbf0982011-12-23 10:17:54 +1100824 continue;
825 if (!test_bit(In_sync, &rdev->flags) &&
826 r10_bio->devs[slot].addr + sectors > rdev->recovery_offset)
NeilBrown56d99122011-05-11 14:27:03 +1000827 continue;
828
NeilBrown856e08e2011-07-28 11:39:23 +1000829 dev_sector = r10_bio->devs[slot].addr;
830 if (is_badblock(rdev, dev_sector, sectors,
831 &first_bad, &bad_sectors)) {
832 if (best_dist < MaxSector)
833 /* Already have a better slot */
834 continue;
835 if (first_bad <= dev_sector) {
836 /* Cannot read here. If this is the
837 * 'primary' device, then we must not read
838 * beyond 'bad_sectors' from another device.
839 */
840 bad_sectors -= (dev_sector - first_bad);
841 if (!do_balance && sectors > bad_sectors)
842 sectors = bad_sectors;
843 if (best_good_sectors > sectors)
844 best_good_sectors = sectors;
845 } else {
846 sector_t good_sectors =
847 first_bad - dev_sector;
848 if (good_sectors > best_good_sectors) {
849 best_good_sectors = good_sectors;
850 best_slot = slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100851 best_rdev = rdev;
NeilBrown856e08e2011-07-28 11:39:23 +1000852 }
853 if (!do_balance)
854 /* Must read from here */
855 break;
856 }
857 continue;
858 } else
859 best_good_sectors = sectors;
860
NeilBrown56d99122011-05-11 14:27:03 +1000861 if (!do_balance)
862 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
NeilBrown22dfdf52005-11-28 13:44:09 -0800864 /* This optimisation is debatable, and completely destroys
865 * sequential read speed for 'far copies' arrays. So only
866 * keep it for 'near' arrays, and review those later.
867 */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000868 if (geo->near_copies > 1 && !atomic_read(&rdev->nr_pending))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 break;
Keld Simonsen8ed3a192008-03-04 14:29:34 -0800870
871 /* for far > 1 always use the lowest address */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000872 if (geo->far_copies > 1)
NeilBrown56d99122011-05-11 14:27:03 +1000873 new_distance = r10_bio->devs[slot].addr;
Keld Simonsen8ed3a192008-03-04 14:29:34 -0800874 else
NeilBrown56d99122011-05-11 14:27:03 +1000875 new_distance = abs(r10_bio->devs[slot].addr -
876 conf->mirrors[disk].head_position);
877 if (new_distance < best_dist) {
878 best_dist = new_distance;
879 best_slot = slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100880 best_rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
882 }
NeilBrownabbf0982011-12-23 10:17:54 +1100883 if (slot >= conf->copies) {
NeilBrown56d99122011-05-11 14:27:03 +1000884 slot = best_slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100885 rdev = best_rdev;
886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
NeilBrown56d99122011-05-11 14:27:03 +1000888 if (slot >= 0) {
NeilBrown56d99122011-05-11 14:27:03 +1000889 atomic_inc(&rdev->nr_pending);
890 if (test_bit(Faulty, &rdev->flags)) {
891 /* Cannot risk returning a device that failed
892 * before we inc'ed nr_pending
893 */
894 rdev_dec_pending(rdev, conf->mddev);
895 goto retry;
896 }
897 r10_bio->read_slot = slot;
898 } else
NeilBrown96c3fd12011-12-23 10:17:54 +1100899 rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 rcu_read_unlock();
NeilBrown856e08e2011-07-28 11:39:23 +1000901 *max_sectors = best_good_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
NeilBrown96c3fd12011-12-23 10:17:54 +1100903 return rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +1000906int md_raid10_congested(struct mddev *mddev, int bits)
NeilBrown0d129222006-10-03 01:15:54 -0700907{
NeilBrowne879a872011-10-11 16:49:02 +1100908 struct r10conf *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700909 int i, ret = 0;
910
NeilBrown34db0cd2011-10-11 16:50:01 +1100911 if ((bits & (1 << BDI_async_congested)) &&
912 conf->pending_count >= max_queued_requests)
913 return 1;
914
NeilBrown0d129222006-10-03 01:15:54 -0700915 rcu_read_lock();
NeilBrownf8c9e742012-05-21 09:28:33 +1000916 for (i = 0;
917 (i < conf->geo.raid_disks || i < conf->prev.raid_disks)
918 && ret == 0;
919 i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100920 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
NeilBrown0d129222006-10-03 01:15:54 -0700921 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200922 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700923
924 ret |= bdi_congested(&q->backing_dev_info, bits);
925 }
926 }
927 rcu_read_unlock();
928 return ret;
929}
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +1000930EXPORT_SYMBOL_GPL(md_raid10_congested);
931
932static int raid10_congested(void *data, int bits)
933{
934 struct mddev *mddev = data;
935
936 return mddev_congested(mddev, bits) ||
937 md_raid10_congested(mddev, bits);
938}
NeilBrown0d129222006-10-03 01:15:54 -0700939
NeilBrowne879a872011-10-11 16:49:02 +1100940static void flush_pending_writes(struct r10conf *conf)
NeilBrowna35e63e2008-03-04 14:29:29 -0800941{
942 /* Any writes that have been queued but are awaiting
943 * bitmap updates get flushed here.
NeilBrowna35e63e2008-03-04 14:29:29 -0800944 */
NeilBrowna35e63e2008-03-04 14:29:29 -0800945 spin_lock_irq(&conf->device_lock);
946
947 if (conf->pending_bio_list.head) {
948 struct bio *bio;
949 bio = bio_list_get(&conf->pending_bio_list);
NeilBrown34db0cd2011-10-11 16:50:01 +1100950 conf->pending_count = 0;
NeilBrowna35e63e2008-03-04 14:29:29 -0800951 spin_unlock_irq(&conf->device_lock);
952 /* flush any pending bitmap writes to disk
953 * before proceeding w/ I/O */
954 bitmap_unplug(conf->mddev->bitmap);
NeilBrown34db0cd2011-10-11 16:50:01 +1100955 wake_up(&conf->wait_barrier);
NeilBrowna35e63e2008-03-04 14:29:29 -0800956
957 while (bio) { /* submit pending writes */
958 struct bio *next = bio->bi_next;
959 bio->bi_next = NULL;
Shaohua Li532a2a32012-10-11 13:30:52 +1100960 if (unlikely((bio->bi_rw & REQ_DISCARD) &&
961 !blk_queue_discard(bdev_get_queue(bio->bi_bdev))))
962 /* Just ignore it */
963 bio_endio(bio, 0);
964 else
965 generic_make_request(bio);
NeilBrowna35e63e2008-03-04 14:29:29 -0800966 bio = next;
967 }
NeilBrowna35e63e2008-03-04 14:29:29 -0800968 } else
969 spin_unlock_irq(&conf->device_lock);
NeilBrowna35e63e2008-03-04 14:29:29 -0800970}
Jens Axboe7eaceac2011-03-10 08:52:07 +0100971
NeilBrown0a27ec92006-01-06 00:20:13 -0800972/* Barriers....
973 * Sometimes we need to suspend IO while we do something else,
974 * either some resync/recovery, or reconfigure the array.
975 * To do this we raise a 'barrier'.
976 * The 'barrier' is a counter that can be raised multiple times
977 * to count how many activities are happening which preclude
978 * normal IO.
979 * We can only raise the barrier if there is no pending IO.
980 * i.e. if nr_pending == 0.
981 * We choose only to raise the barrier if no-one is waiting for the
982 * barrier to go down. This means that as soon as an IO request
983 * is ready, no other operations which require a barrier will start
984 * until the IO request has had a chance.
985 *
986 * So: regular IO calls 'wait_barrier'. When that returns there
987 * is no backgroup IO happening, It must arrange to call
988 * allow_barrier when it has finished its IO.
989 * backgroup IO calls must call raise_barrier. Once that returns
990 * there is no normal IO happeing. It must arrange to call
991 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
NeilBrowne879a872011-10-11 16:49:02 +1100994static void raise_barrier(struct r10conf *conf, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
NeilBrown6cce3b22006-01-06 00:20:16 -0800996 BUG_ON(force && !conf->barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 spin_lock_irq(&conf->resync_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
NeilBrown6cce3b22006-01-06 00:20:16 -0800999 /* Wait until no block IO is waiting (unless 'force') */
1000 wait_event_lock_irq(conf->wait_barrier, force || !conf->nr_waiting,
Lukas Czernereed8c022012-11-30 11:42:40 +01001001 conf->resync_lock);
NeilBrown0a27ec92006-01-06 00:20:13 -08001002
1003 /* block any new IO from starting */
1004 conf->barrier++;
1005
NeilBrownc3b328a2011-04-18 18:25:43 +10001006 /* Now wait for all pending IO to complete */
NeilBrown0a27ec92006-01-06 00:20:13 -08001007 wait_event_lock_irq(conf->wait_barrier,
1008 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
Lukas Czernereed8c022012-11-30 11:42:40 +01001009 conf->resync_lock);
NeilBrown0a27ec92006-01-06 00:20:13 -08001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 spin_unlock_irq(&conf->resync_lock);
1012}
1013
NeilBrowne879a872011-10-11 16:49:02 +11001014static void lower_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -08001015{
1016 unsigned long flags;
1017 spin_lock_irqsave(&conf->resync_lock, flags);
1018 conf->barrier--;
1019 spin_unlock_irqrestore(&conf->resync_lock, flags);
1020 wake_up(&conf->wait_barrier);
1021}
1022
NeilBrowne879a872011-10-11 16:49:02 +11001023static void wait_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -08001024{
1025 spin_lock_irq(&conf->resync_lock);
1026 if (conf->barrier) {
1027 conf->nr_waiting++;
NeilBrownd6b42dc2012-03-19 12:46:38 +11001028 /* Wait for the barrier to drop.
1029 * However if there are already pending
1030 * requests (preventing the barrier from
1031 * rising completely), and the
1032 * pre-process bio queue isn't empty,
1033 * then don't wait, as we need to empty
1034 * that queue to get the nr_pending
1035 * count down.
1036 */
1037 wait_event_lock_irq(conf->wait_barrier,
1038 !conf->barrier ||
1039 (conf->nr_pending &&
1040 current->bio_list &&
1041 !bio_list_empty(current->bio_list)),
Lukas Czernereed8c022012-11-30 11:42:40 +01001042 conf->resync_lock);
NeilBrown0a27ec92006-01-06 00:20:13 -08001043 conf->nr_waiting--;
1044 }
1045 conf->nr_pending++;
1046 spin_unlock_irq(&conf->resync_lock);
1047}
1048
NeilBrowne879a872011-10-11 16:49:02 +11001049static void allow_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -08001050{
1051 unsigned long flags;
1052 spin_lock_irqsave(&conf->resync_lock, flags);
1053 conf->nr_pending--;
1054 spin_unlock_irqrestore(&conf->resync_lock, flags);
1055 wake_up(&conf->wait_barrier);
1056}
1057
NeilBrowne879a872011-10-11 16:49:02 +11001058static void freeze_array(struct r10conf *conf)
NeilBrown4443ae12006-01-06 00:20:28 -08001059{
1060 /* stop syncio and normal IO and wait for everything to
NeilBrownf1885932006-01-06 00:20:42 -08001061 * go quiet.
NeilBrown4443ae12006-01-06 00:20:28 -08001062 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -08001063 * wait until nr_pending match nr_queued+1
1064 * This is called in the context of one normal IO request
1065 * that has failed. Thus any sync request that might be pending
1066 * will be blocked by nr_pending, and we need to wait for
1067 * pending IO requests to complete or be queued for re-try.
1068 * Thus the number queued (nr_queued) plus this request (1)
1069 * must match the number of pending IOs (nr_pending) before
1070 * we continue.
NeilBrown4443ae12006-01-06 00:20:28 -08001071 */
1072 spin_lock_irq(&conf->resync_lock);
1073 conf->barrier++;
1074 conf->nr_waiting++;
Lukas Czernereed8c022012-11-30 11:42:40 +01001075 wait_event_lock_irq_cmd(conf->wait_barrier,
1076 conf->nr_pending == conf->nr_queued+1,
1077 conf->resync_lock,
1078 flush_pending_writes(conf));
NeilBrownc3b328a2011-04-18 18:25:43 +10001079
NeilBrown4443ae12006-01-06 00:20:28 -08001080 spin_unlock_irq(&conf->resync_lock);
1081}
1082
NeilBrowne879a872011-10-11 16:49:02 +11001083static void unfreeze_array(struct r10conf *conf)
NeilBrown4443ae12006-01-06 00:20:28 -08001084{
1085 /* reverse the effect of the freeze */
1086 spin_lock_irq(&conf->resync_lock);
1087 conf->barrier--;
1088 conf->nr_waiting--;
1089 wake_up(&conf->wait_barrier);
1090 spin_unlock_irq(&conf->resync_lock);
1091}
1092
NeilBrownf8c9e742012-05-21 09:28:33 +10001093static sector_t choose_data_offset(struct r10bio *r10_bio,
1094 struct md_rdev *rdev)
1095{
1096 if (!test_bit(MD_RECOVERY_RESHAPE, &rdev->mddev->recovery) ||
1097 test_bit(R10BIO_Previous, &r10_bio->state))
1098 return rdev->data_offset;
1099 else
1100 return rdev->new_data_offset;
1101}
1102
NeilBrown57c67df2012-10-11 13:32:13 +11001103struct raid10_plug_cb {
1104 struct blk_plug_cb cb;
1105 struct bio_list pending;
1106 int pending_cnt;
1107};
1108
1109static void raid10_unplug(struct blk_plug_cb *cb, bool from_schedule)
1110{
1111 struct raid10_plug_cb *plug = container_of(cb, struct raid10_plug_cb,
1112 cb);
1113 struct mddev *mddev = plug->cb.data;
1114 struct r10conf *conf = mddev->private;
1115 struct bio *bio;
1116
NeilBrown874807a2012-11-27 12:14:40 +11001117 if (from_schedule || current->bio_list) {
NeilBrown57c67df2012-10-11 13:32:13 +11001118 spin_lock_irq(&conf->device_lock);
1119 bio_list_merge(&conf->pending_bio_list, &plug->pending);
1120 conf->pending_count += plug->pending_cnt;
1121 spin_unlock_irq(&conf->device_lock);
NeilBrownee0b0242013-02-25 12:38:29 +11001122 wake_up(&conf->wait_barrier);
NeilBrown57c67df2012-10-11 13:32:13 +11001123 md_wakeup_thread(mddev->thread);
1124 kfree(plug);
1125 return;
1126 }
1127
1128 /* we aren't scheduling, so we can do the write-out directly. */
1129 bio = bio_list_get(&plug->pending);
1130 bitmap_unplug(mddev->bitmap);
1131 wake_up(&conf->wait_barrier);
1132
1133 while (bio) { /* submit pending writes */
1134 struct bio *next = bio->bi_next;
1135 bio->bi_next = NULL;
1136 generic_make_request(bio);
1137 bio = next;
1138 }
1139 kfree(plug);
1140}
1141
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -07001142static void make_request(struct mddev *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
NeilBrowne879a872011-10-11 16:49:02 +11001144 struct r10conf *conf = mddev->private;
NeilBrown9f2c9d12011-10-11 16:48:43 +11001145 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 struct bio *read_bio;
1147 int i;
NeilBrownf8c9e742012-05-21 09:28:33 +10001148 sector_t chunk_mask = (conf->geo.chunk_mask & conf->prev.chunk_mask);
NeilBrown5cf00fc2012-05-21 09:28:20 +10001149 int chunk_sects = chunk_mask + 1;
Jens Axboea3623572005-11-01 09:26:16 +01001150 const int rw = bio_data_dir(bio);
NeilBrown2c7d46e2010-08-18 16:16:05 +10001151 const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
Tejun Heoe9c74692010-09-03 11:56:18 +02001152 const unsigned long do_fua = (bio->bi_rw & REQ_FUA);
Shaohua Li532a2a32012-10-11 13:30:52 +11001153 const unsigned long do_discard = (bio->bi_rw
1154 & (REQ_DISCARD | REQ_SECURE));
Joe Lawrencec8dc9c62013-02-21 13:28:09 +11001155 const unsigned long do_same = (bio->bi_rw & REQ_WRITE_SAME);
NeilBrown6cce3b22006-01-06 00:20:16 -08001156 unsigned long flags;
NeilBrown3cb03002011-10-11 16:45:26 +11001157 struct md_rdev *blocked_rdev;
NeilBrown57c67df2012-10-11 13:32:13 +11001158 struct blk_plug_cb *cb;
1159 struct raid10_plug_cb *plug = NULL;
NeilBrownd4432c22011-07-28 11:39:24 +10001160 int sectors_handled;
1161 int max_sectors;
NeilBrown3ea7daa2012-05-22 13:53:47 +10001162 int sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Tejun Heoe9c74692010-09-03 11:56:18 +02001164 if (unlikely(bio->bi_rw & REQ_FLUSH)) {
1165 md_flush_request(mddev, bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001166 return;
NeilBrowne5dcdd82005-09-09 16:23:41 -07001167 }
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 /* If this request crosses a chunk boundary, we need to
1170 * split it. This will only happen for 1 PAGE (or less) requests.
1171 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10001172 if (unlikely((bio->bi_sector & chunk_mask) + (bio->bi_size >> 9)
1173 > chunk_sects
NeilBrownf8c9e742012-05-21 09:28:33 +10001174 && (conf->geo.near_copies < conf->geo.raid_disks
1175 || conf->prev.near_copies < conf->prev.raid_disks))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 struct bio_pair *bp;
1177 /* Sanity check -- queue functions should prevent this happening */
Shaohua Li532a2a32012-10-11 13:30:52 +11001178 if ((bio->bi_vcnt != 1 && bio->bi_vcnt != 0) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 bio->bi_idx != 0)
1180 goto bad_map;
1181 /* This is a one page bio that upper layers
1182 * refuse to split for us, so we need to split it.
1183 */
Denis ChengRq6feef532008-10-09 08:57:05 +02001184 bp = bio_split(bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 chunk_sects - (bio->bi_sector & (chunk_sects - 1)) );
NeilBrown51e9ac72010-08-07 21:17:00 +10001186
1187 /* Each of these 'make_request' calls will call 'wait_barrier'.
1188 * If the first succeeds but the second blocks due to the resync
1189 * thread raising the barrier, we will deadlock because the
1190 * IO to the underlying device will be queued in generic_make_request
1191 * and will never complete, so will never reduce nr_pending.
1192 * So increment nr_waiting here so no new raise_barriers will
1193 * succeed, and so the second wait_barrier cannot block.
1194 */
1195 spin_lock_irq(&conf->resync_lock);
1196 conf->nr_waiting++;
1197 spin_unlock_irq(&conf->resync_lock);
1198
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001199 make_request(mddev, &bp->bio1);
1200 make_request(mddev, &bp->bio2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
NeilBrown51e9ac72010-08-07 21:17:00 +10001202 spin_lock_irq(&conf->resync_lock);
1203 conf->nr_waiting--;
1204 wake_up(&conf->wait_barrier);
1205 spin_unlock_irq(&conf->resync_lock);
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 bio_pair_release(bp);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001208 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 bad_map:
NeilBrown128595e2010-05-03 14:47:14 +10001210 printk("md/raid10:%s: make_request bug: can't convert block across chunks"
1211 " or bigger than %dk %llu %d\n", mdname(mddev), chunk_sects/2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 (unsigned long long)bio->bi_sector, bio->bi_size >> 10);
1213
NeilBrown6712ecf2007-09-27 12:47:43 +02001214 bio_io_error(bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001215 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
1217
NeilBrown3d310eb2005-06-21 17:17:26 -07001218 md_write_start(mddev, bio);
NeilBrown06d91a52005-06-21 17:17:12 -07001219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 /*
1221 * Register the new request and wait if the reconstruction
1222 * thread has put up a bar for new requests.
1223 * Continue immediately if no resync is active currently.
1224 */
NeilBrown0a27ec92006-01-06 00:20:13 -08001225 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
NeilBrown3ea7daa2012-05-22 13:53:47 +10001227 sectors = bio->bi_size >> 9;
1228 while (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery) &&
1229 bio->bi_sector < conf->reshape_progress &&
1230 bio->bi_sector + sectors > conf->reshape_progress) {
1231 /* IO spans the reshape position. Need to wait for
1232 * reshape to pass
1233 */
1234 allow_barrier(conf);
1235 wait_event(conf->wait_barrier,
1236 conf->reshape_progress <= bio->bi_sector ||
1237 conf->reshape_progress >= bio->bi_sector + sectors);
1238 wait_barrier(conf);
1239 }
1240 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery) &&
1241 bio_data_dir(bio) == WRITE &&
1242 (mddev->reshape_backwards
1243 ? (bio->bi_sector < conf->reshape_safe &&
1244 bio->bi_sector + sectors > conf->reshape_progress)
1245 : (bio->bi_sector + sectors > conf->reshape_safe &&
1246 bio->bi_sector < conf->reshape_progress))) {
1247 /* Need to update reshape_position in metadata */
1248 mddev->reshape_position = conf->reshape_progress;
1249 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1250 set_bit(MD_CHANGE_PENDING, &mddev->flags);
1251 md_wakeup_thread(mddev->thread);
1252 wait_event(mddev->sb_wait,
1253 !test_bit(MD_CHANGE_PENDING, &mddev->flags));
1254
1255 conf->reshape_safe = mddev->reshape_position;
1256 }
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1259
1260 r10_bio->master_bio = bio;
NeilBrown3ea7daa2012-05-22 13:53:47 +10001261 r10_bio->sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 r10_bio->mddev = mddev;
1264 r10_bio->sector = bio->bi_sector;
NeilBrown6cce3b22006-01-06 00:20:16 -08001265 r10_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
NeilBrown856e08e2011-07-28 11:39:23 +10001267 /* We might need to issue multiple reads to different
1268 * devices if there are bad blocks around, so we keep
1269 * track of the number of reads in bio->bi_phys_segments.
1270 * If this is 0, there is only one r10_bio and no locking
1271 * will be needed when the request completes. If it is
1272 * non-zero, then it is the number of not-completed requests.
1273 */
1274 bio->bi_phys_segments = 0;
1275 clear_bit(BIO_SEG_VALID, &bio->bi_flags);
1276
Jens Axboea3623572005-11-01 09:26:16 +01001277 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 /*
1279 * read balancing logic:
1280 */
NeilBrown96c3fd12011-12-23 10:17:54 +11001281 struct md_rdev *rdev;
NeilBrown856e08e2011-07-28 11:39:23 +10001282 int slot;
1283
1284read_again:
NeilBrown96c3fd12011-12-23 10:17:54 +11001285 rdev = read_balance(conf, r10_bio, &max_sectors);
1286 if (!rdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 raid_end_bio_io(r10_bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001288 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
NeilBrown96c3fd12011-12-23 10:17:54 +11001290 slot = r10_bio->read_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
NeilBrowna167f662010-10-26 18:31:13 +11001292 read_bio = bio_clone_mddev(bio, GFP_NOIO, mddev);
NeilBrown856e08e2011-07-28 11:39:23 +10001293 md_trim_bio(read_bio, r10_bio->sector - bio->bi_sector,
1294 max_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 r10_bio->devs[slot].bio = read_bio;
NeilBrownabbf0982011-12-23 10:17:54 +11001297 r10_bio->devs[slot].rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 read_bio->bi_sector = r10_bio->devs[slot].addr +
NeilBrownf8c9e742012-05-21 09:28:33 +10001300 choose_data_offset(r10_bio, rdev);
NeilBrown96c3fd12011-12-23 10:17:54 +11001301 read_bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 read_bio->bi_end_io = raid10_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001303 read_bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 read_bio->bi_private = r10_bio;
1305
NeilBrown856e08e2011-07-28 11:39:23 +10001306 if (max_sectors < r10_bio->sectors) {
1307 /* Could not read all from this device, so we will
1308 * need another r10_bio.
1309 */
NeilBrown856e08e2011-07-28 11:39:23 +10001310 sectors_handled = (r10_bio->sectors + max_sectors
1311 - bio->bi_sector);
1312 r10_bio->sectors = max_sectors;
1313 spin_lock_irq(&conf->device_lock);
1314 if (bio->bi_phys_segments == 0)
1315 bio->bi_phys_segments = 2;
1316 else
1317 bio->bi_phys_segments++;
1318 spin_unlock(&conf->device_lock);
1319 /* Cannot call generic_make_request directly
1320 * as that will be queued in __generic_make_request
1321 * and subsequent mempool_alloc might block
1322 * waiting for it. so hand bio over to raid10d.
1323 */
1324 reschedule_retry(r10_bio);
1325
1326 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1327
1328 r10_bio->master_bio = bio;
1329 r10_bio->sectors = ((bio->bi_size >> 9)
1330 - sectors_handled);
1331 r10_bio->state = 0;
1332 r10_bio->mddev = mddev;
1333 r10_bio->sector = bio->bi_sector + sectors_handled;
1334 goto read_again;
1335 } else
1336 generic_make_request(read_bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001337 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339
1340 /*
1341 * WRITE:
1342 */
NeilBrown34db0cd2011-10-11 16:50:01 +11001343 if (conf->pending_count >= max_queued_requests) {
1344 md_wakeup_thread(mddev->thread);
1345 wait_event(conf->wait_barrier,
1346 conf->pending_count < max_queued_requests);
1347 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07001348 /* first select target devices under rcu_lock and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 * inc refcount on their rdev. Record them by setting
1350 * bios[x] to bio
NeilBrownd4432c22011-07-28 11:39:24 +10001351 * If there are known/acknowledged bad blocks on any device
1352 * on which we have seen a write error, we want to avoid
1353 * writing to those blocks. This potentially requires several
1354 * writes to write around the bad blocks. Each set of writes
1355 * gets its own r10_bio with a set of bios attached. The number
1356 * of r10_bios is recored in bio->bi_phys_segments just as with
1357 * the read case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 */
NeilBrownc3b328a2011-04-18 18:25:43 +10001359
NeilBrown69335ef2011-12-23 10:17:54 +11001360 r10_bio->read_slot = -1; /* make sure repl_bio gets freed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 raid10_find_phys(conf, r10_bio);
NeilBrownd4432c22011-07-28 11:39:24 +10001362retry_write:
Harvey Harrisoncb6969e2008-05-06 20:42:32 -07001363 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 rcu_read_lock();
NeilBrownd4432c22011-07-28 11:39:24 +10001365 max_sectors = r10_bio->sectors;
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 for (i = 0; i < conf->copies; i++) {
1368 int d = r10_bio->devs[i].devnum;
NeilBrown3cb03002011-10-11 16:45:26 +11001369 struct md_rdev *rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown475b0322011-12-23 10:17:55 +11001370 struct md_rdev *rrdev = rcu_dereference(
1371 conf->mirrors[d].replacement);
NeilBrown4ca40c22011-12-23 10:17:55 +11001372 if (rdev == rrdev)
1373 rrdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07001374 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
1375 atomic_inc(&rdev->nr_pending);
1376 blocked_rdev = rdev;
1377 break;
1378 }
NeilBrown475b0322011-12-23 10:17:55 +11001379 if (rrdev && unlikely(test_bit(Blocked, &rrdev->flags))) {
1380 atomic_inc(&rrdev->nr_pending);
1381 blocked_rdev = rrdev;
1382 break;
1383 }
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001384 if (rdev && (test_bit(Faulty, &rdev->flags)
1385 || test_bit(Unmerged, &rdev->flags)))
1386 rdev = NULL;
NeilBrown050b6612012-03-19 12:46:39 +11001387 if (rrdev && (test_bit(Faulty, &rrdev->flags)
1388 || test_bit(Unmerged, &rrdev->flags)))
NeilBrown475b0322011-12-23 10:17:55 +11001389 rrdev = NULL;
1390
NeilBrownd4432c22011-07-28 11:39:24 +10001391 r10_bio->devs[i].bio = NULL;
NeilBrown475b0322011-12-23 10:17:55 +11001392 r10_bio->devs[i].repl_bio = NULL;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001393
1394 if (!rdev && !rrdev) {
NeilBrown6cce3b22006-01-06 00:20:16 -08001395 set_bit(R10BIO_Degraded, &r10_bio->state);
NeilBrownd4432c22011-07-28 11:39:24 +10001396 continue;
NeilBrown6cce3b22006-01-06 00:20:16 -08001397 }
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001398 if (rdev && test_bit(WriteErrorSeen, &rdev->flags)) {
NeilBrownd4432c22011-07-28 11:39:24 +10001399 sector_t first_bad;
1400 sector_t dev_sector = r10_bio->devs[i].addr;
1401 int bad_sectors;
1402 int is_bad;
1403
1404 is_bad = is_badblock(rdev, dev_sector,
1405 max_sectors,
1406 &first_bad, &bad_sectors);
1407 if (is_bad < 0) {
1408 /* Mustn't write here until the bad block
1409 * is acknowledged
1410 */
1411 atomic_inc(&rdev->nr_pending);
1412 set_bit(BlockedBadBlocks, &rdev->flags);
1413 blocked_rdev = rdev;
1414 break;
1415 }
1416 if (is_bad && first_bad <= dev_sector) {
1417 /* Cannot write here at all */
1418 bad_sectors -= (dev_sector - first_bad);
1419 if (bad_sectors < max_sectors)
1420 /* Mustn't write more than bad_sectors
1421 * to other devices yet
1422 */
1423 max_sectors = bad_sectors;
1424 /* We don't set R10BIO_Degraded as that
1425 * only applies if the disk is missing,
1426 * so it might be re-added, and we want to
1427 * know to recover this chunk.
1428 * In this case the device is here, and the
1429 * fact that this chunk is not in-sync is
1430 * recorded in the bad block log.
1431 */
1432 continue;
1433 }
1434 if (is_bad) {
1435 int good_sectors = first_bad - dev_sector;
1436 if (good_sectors < max_sectors)
1437 max_sectors = good_sectors;
1438 }
1439 }
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001440 if (rdev) {
1441 r10_bio->devs[i].bio = bio;
1442 atomic_inc(&rdev->nr_pending);
1443 }
NeilBrown475b0322011-12-23 10:17:55 +11001444 if (rrdev) {
1445 r10_bio->devs[i].repl_bio = bio;
1446 atomic_inc(&rrdev->nr_pending);
1447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449 rcu_read_unlock();
1450
Dan Williams6bfe0b42008-04-30 00:52:32 -07001451 if (unlikely(blocked_rdev)) {
1452 /* Have to wait for this device to get unblocked, then retry */
1453 int j;
1454 int d;
1455
NeilBrown475b0322011-12-23 10:17:55 +11001456 for (j = 0; j < i; j++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07001457 if (r10_bio->devs[j].bio) {
1458 d = r10_bio->devs[j].devnum;
1459 rdev_dec_pending(conf->mirrors[d].rdev, mddev);
1460 }
NeilBrown475b0322011-12-23 10:17:55 +11001461 if (r10_bio->devs[j].repl_bio) {
NeilBrown4ca40c22011-12-23 10:17:55 +11001462 struct md_rdev *rdev;
NeilBrown475b0322011-12-23 10:17:55 +11001463 d = r10_bio->devs[j].devnum;
NeilBrown4ca40c22011-12-23 10:17:55 +11001464 rdev = conf->mirrors[d].replacement;
1465 if (!rdev) {
1466 /* Race with remove_disk */
1467 smp_mb();
1468 rdev = conf->mirrors[d].rdev;
1469 }
1470 rdev_dec_pending(rdev, mddev);
NeilBrown475b0322011-12-23 10:17:55 +11001471 }
1472 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07001473 allow_barrier(conf);
1474 md_wait_for_blocked_rdev(blocked_rdev, mddev);
1475 wait_barrier(conf);
1476 goto retry_write;
1477 }
1478
NeilBrownd4432c22011-07-28 11:39:24 +10001479 if (max_sectors < r10_bio->sectors) {
1480 /* We are splitting this into multiple parts, so
1481 * we need to prepare for allocating another r10_bio.
1482 */
1483 r10_bio->sectors = max_sectors;
1484 spin_lock_irq(&conf->device_lock);
1485 if (bio->bi_phys_segments == 0)
1486 bio->bi_phys_segments = 2;
1487 else
1488 bio->bi_phys_segments++;
1489 spin_unlock_irq(&conf->device_lock);
1490 }
1491 sectors_handled = r10_bio->sector + max_sectors - bio->bi_sector;
1492
NeilBrown4e780642010-10-19 12:54:01 +11001493 atomic_set(&r10_bio->remaining, 1);
NeilBrownd4432c22011-07-28 11:39:24 +10001494 bitmap_startwrite(mddev->bitmap, r10_bio->sector, r10_bio->sectors, 0);
NeilBrown06d91a52005-06-21 17:17:12 -07001495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 for (i = 0; i < conf->copies; i++) {
1497 struct bio *mbio;
1498 int d = r10_bio->devs[i].devnum;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001499 if (r10_bio->devs[i].bio) {
1500 struct md_rdev *rdev = conf->mirrors[d].rdev;
1501 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
1502 md_trim_bio(mbio, r10_bio->sector - bio->bi_sector,
1503 max_sectors);
1504 r10_bio->devs[i].bio = mbio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001506 mbio->bi_sector = (r10_bio->devs[i].addr+
1507 choose_data_offset(r10_bio,
1508 rdev));
1509 mbio->bi_bdev = rdev->bdev;
1510 mbio->bi_end_io = raid10_end_write_request;
Joe Lawrencec8dc9c62013-02-21 13:28:09 +11001511 mbio->bi_rw =
1512 WRITE | do_sync | do_fua | do_discard | do_same;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001513 mbio->bi_private = r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001515 atomic_inc(&r10_bio->remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001517 cb = blk_check_plugged(raid10_unplug, mddev,
1518 sizeof(*plug));
1519 if (cb)
1520 plug = container_of(cb, struct raid10_plug_cb,
1521 cb);
1522 else
1523 plug = NULL;
1524 spin_lock_irqsave(&conf->device_lock, flags);
1525 if (plug) {
1526 bio_list_add(&plug->pending, mbio);
1527 plug->pending_cnt++;
1528 } else {
1529 bio_list_add(&conf->pending_bio_list, mbio);
1530 conf->pending_count++;
1531 }
1532 spin_unlock_irqrestore(&conf->device_lock, flags);
1533 if (!plug)
1534 md_wakeup_thread(mddev->thread);
1535 }
NeilBrown57c67df2012-10-11 13:32:13 +11001536
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001537 if (r10_bio->devs[i].repl_bio) {
1538 struct md_rdev *rdev = conf->mirrors[d].replacement;
1539 if (rdev == NULL) {
1540 /* Replacement just got moved to main 'rdev' */
1541 smp_mb();
1542 rdev = conf->mirrors[d].rdev;
1543 }
1544 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
1545 md_trim_bio(mbio, r10_bio->sector - bio->bi_sector,
1546 max_sectors);
1547 r10_bio->devs[i].repl_bio = mbio;
1548
1549 mbio->bi_sector = (r10_bio->devs[i].addr +
1550 choose_data_offset(
1551 r10_bio, rdev));
1552 mbio->bi_bdev = rdev->bdev;
1553 mbio->bi_end_io = raid10_end_write_request;
Joe Lawrencec8dc9c62013-02-21 13:28:09 +11001554 mbio->bi_rw =
1555 WRITE | do_sync | do_fua | do_discard | do_same;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001556 mbio->bi_private = r10_bio;
1557
1558 atomic_inc(&r10_bio->remaining);
1559 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown57c67df2012-10-11 13:32:13 +11001560 bio_list_add(&conf->pending_bio_list, mbio);
1561 conf->pending_count++;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001562 spin_unlock_irqrestore(&conf->device_lock, flags);
1563 if (!mddev_check_plugged(mddev))
1564 md_wakeup_thread(mddev->thread);
NeilBrown57c67df2012-10-11 13:32:13 +11001565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 }
1567
NeilBrown079fa162011-09-10 17:21:23 +10001568 /* Don't remove the bias on 'remaining' (one_write_done) until
1569 * after checking if we need to go around again.
1570 */
NeilBrowna35e63e2008-03-04 14:29:29 -08001571
NeilBrownd4432c22011-07-28 11:39:24 +10001572 if (sectors_handled < (bio->bi_size >> 9)) {
NeilBrown079fa162011-09-10 17:21:23 +10001573 one_write_done(r10_bio);
NeilBrown5e570282011-07-28 11:39:25 +10001574 /* We need another r10_bio. It has already been counted
NeilBrownd4432c22011-07-28 11:39:24 +10001575 * in bio->bi_phys_segments.
1576 */
1577 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1578
1579 r10_bio->master_bio = bio;
1580 r10_bio->sectors = (bio->bi_size >> 9) - sectors_handled;
1581
1582 r10_bio->mddev = mddev;
1583 r10_bio->sector = bio->bi_sector + sectors_handled;
1584 r10_bio->state = 0;
1585 goto retry_write;
1586 }
NeilBrown079fa162011-09-10 17:21:23 +10001587 one_write_done(r10_bio);
1588
1589 /* In case raid10d snuck in to freeze_array */
1590 wake_up(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
NeilBrownfd01b882011-10-11 16:47:53 +11001593static void status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
NeilBrowne879a872011-10-11 16:49:02 +11001595 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 int i;
1597
NeilBrown5cf00fc2012-05-21 09:28:20 +10001598 if (conf->geo.near_copies < conf->geo.raid_disks)
Andre Noll9d8f0362009-06-18 08:45:01 +10001599 seq_printf(seq, " %dK chunks", mddev->chunk_sectors / 2);
NeilBrown5cf00fc2012-05-21 09:28:20 +10001600 if (conf->geo.near_copies > 1)
1601 seq_printf(seq, " %d near-copies", conf->geo.near_copies);
1602 if (conf->geo.far_copies > 1) {
1603 if (conf->geo.far_offset)
1604 seq_printf(seq, " %d offset-copies", conf->geo.far_copies);
NeilBrownc93983b2006-06-26 00:27:41 -07001605 else
NeilBrown5cf00fc2012-05-21 09:28:20 +10001606 seq_printf(seq, " %d far-copies", conf->geo.far_copies);
NeilBrownc93983b2006-06-26 00:27:41 -07001607 }
NeilBrown5cf00fc2012-05-21 09:28:20 +10001608 seq_printf(seq, " [%d/%d] [", conf->geo.raid_disks,
1609 conf->geo.raid_disks - mddev->degraded);
1610 for (i = 0; i < conf->geo.raid_disks; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 seq_printf(seq, "%s",
1612 conf->mirrors[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08001613 test_bit(In_sync, &conf->mirrors[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 seq_printf(seq, "]");
1615}
1616
NeilBrown700c7212011-07-27 11:00:36 +10001617/* check if there are enough drives for
1618 * every block to appear on atleast one.
1619 * Don't consider the device numbered 'ignore'
1620 * as we might be about to remove it.
1621 */
NeilBrownf8c9e742012-05-21 09:28:33 +10001622static int _enough(struct r10conf *conf, struct geom *geo, int ignore)
NeilBrown700c7212011-07-27 11:00:36 +10001623{
1624 int first = 0;
1625
1626 do {
1627 int n = conf->copies;
1628 int cnt = 0;
NeilBrown80b48122012-09-27 12:35:21 +10001629 int this = first;
NeilBrown700c7212011-07-27 11:00:36 +10001630 while (n--) {
NeilBrown80b48122012-09-27 12:35:21 +10001631 if (conf->mirrors[this].rdev &&
1632 this != ignore)
NeilBrown700c7212011-07-27 11:00:36 +10001633 cnt++;
NeilBrown80b48122012-09-27 12:35:21 +10001634 this = (this+1) % geo->raid_disks;
NeilBrown700c7212011-07-27 11:00:36 +10001635 }
1636 if (cnt == 0)
1637 return 0;
NeilBrown80b48122012-09-27 12:35:21 +10001638 first = (first + geo->near_copies) % geo->raid_disks;
NeilBrown700c7212011-07-27 11:00:36 +10001639 } while (first != 0);
1640 return 1;
1641}
1642
NeilBrownf8c9e742012-05-21 09:28:33 +10001643static int enough(struct r10conf *conf, int ignore)
1644{
1645 return _enough(conf, &conf->geo, ignore) &&
1646 _enough(conf, &conf->prev, ignore);
1647}
1648
NeilBrownfd01b882011-10-11 16:47:53 +11001649static void error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
1651 char b[BDEVNAME_SIZE];
NeilBrowne879a872011-10-11 16:49:02 +11001652 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 /*
1655 * If it is not operational, then we have already marked it as dead
1656 * else if it is the last working disks, ignore the error, let the
1657 * next level up know.
1658 * else mark the drive as failed
1659 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001660 if (test_bit(In_sync, &rdev->flags)
NeilBrown700c7212011-07-27 11:00:36 +10001661 && !enough(conf, rdev->raid_disk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 /*
1663 * Don't fail the drive, just return an IO error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 */
1665 return;
NeilBrownc04be0a2006-10-03 01:15:53 -07001666 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1667 unsigned long flags;
1668 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001670 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 /*
1672 * if recovery is running, make sure it aborts.
1673 */
NeilBrowndfc70642008-05-23 13:04:39 -07001674 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }
NeilBrownde393cd2011-07-28 11:31:48 +10001676 set_bit(Blocked, &rdev->flags);
NeilBrownb2d444d2005-11-08 21:39:31 -08001677 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -07001678 set_bit(MD_CHANGE_DEVS, &mddev->flags);
Joe Perches067032b2011-01-14 09:14:33 +11001679 printk(KERN_ALERT
1680 "md/raid10:%s: Disk failure on %s, disabling device.\n"
1681 "md/raid10:%s: Operation continuing on %d devices.\n",
NeilBrown128595e2010-05-03 14:47:14 +10001682 mdname(mddev), bdevname(rdev->bdev, b),
NeilBrown5cf00fc2012-05-21 09:28:20 +10001683 mdname(mddev), conf->geo.raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684}
1685
NeilBrowne879a872011-10-11 16:49:02 +11001686static void print_conf(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
1688 int i;
Jonathan Brassowdc280d982012-07-31 10:03:52 +10001689 struct raid10_info *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
NeilBrown128595e2010-05-03 14:47:14 +10001691 printk(KERN_DEBUG "RAID10 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 if (!conf) {
NeilBrown128595e2010-05-03 14:47:14 +10001693 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 return;
1695 }
NeilBrown5cf00fc2012-05-21 09:28:20 +10001696 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->geo.raid_disks - conf->mddev->degraded,
1697 conf->geo.raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
NeilBrown5cf00fc2012-05-21 09:28:20 +10001699 for (i = 0; i < conf->geo.raid_disks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 char b[BDEVNAME_SIZE];
1701 tmp = conf->mirrors + i;
1702 if (tmp->rdev)
NeilBrown128595e2010-05-03 14:47:14 +10001703 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownb2d444d2005-11-08 21:39:31 -08001704 i, !test_bit(In_sync, &tmp->rdev->flags),
1705 !test_bit(Faulty, &tmp->rdev->flags),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 bdevname(tmp->rdev->bdev,b));
1707 }
1708}
1709
NeilBrowne879a872011-10-11 16:49:02 +11001710static void close_sync(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711{
NeilBrown0a27ec92006-01-06 00:20:13 -08001712 wait_barrier(conf);
1713 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715 mempool_destroy(conf->r10buf_pool);
1716 conf->r10buf_pool = NULL;
1717}
1718
NeilBrownfd01b882011-10-11 16:47:53 +11001719static int raid10_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
1721 int i;
NeilBrowne879a872011-10-11 16:49:02 +11001722 struct r10conf *conf = mddev->private;
Jonathan Brassowdc280d982012-07-31 10:03:52 +10001723 struct raid10_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10001724 int count = 0;
1725 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727 /*
1728 * Find all non-in_sync disks within the RAID10 configuration
1729 * and mark them in_sync
1730 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10001731 for (i = 0; i < conf->geo.raid_disks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 tmp = conf->mirrors + i;
NeilBrown4ca40c22011-12-23 10:17:55 +11001733 if (tmp->replacement
1734 && tmp->replacement->recovery_offset == MaxSector
1735 && !test_bit(Faulty, &tmp->replacement->flags)
1736 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
1737 /* Replacement has just become active */
1738 if (!tmp->rdev
1739 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
1740 count++;
1741 if (tmp->rdev) {
1742 /* Replaced device not technically faulty,
1743 * but we need to be sure it gets removed
1744 * and never re-added.
1745 */
1746 set_bit(Faulty, &tmp->rdev->flags);
1747 sysfs_notify_dirent_safe(
1748 tmp->rdev->sysfs_state);
1749 }
1750 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
1751 } else if (tmp->rdev
1752 && !test_bit(Faulty, &tmp->rdev->flags)
1753 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10001754 count++;
Jonathan Brassow2863b9e2012-10-11 13:38:58 +11001755 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 }
1757 }
NeilBrown6b965622010-08-18 11:56:59 +10001758 spin_lock_irqsave(&conf->device_lock, flags);
1759 mddev->degraded -= count;
1760 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 print_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10001763 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
1765
1766
NeilBrownfd01b882011-10-11 16:47:53 +11001767static int raid10_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768{
NeilBrowne879a872011-10-11 16:49:02 +11001769 struct r10conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001770 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 int mirror;
Neil Brown6c2fce22008-06-28 08:31:31 +10001772 int first = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +10001773 int last = conf->geo.raid_disks - 1;
NeilBrown050b6612012-03-19 12:46:39 +11001774 struct request_queue *q = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
1776 if (mddev->recovery_cp < MaxSector)
1777 /* only hot-add to in-sync arrays, as recovery is
1778 * very different from resync
1779 */
Neil Brown199050e2008-06-28 08:31:33 +10001780 return -EBUSY;
NeilBrownf8c9e742012-05-21 09:28:33 +10001781 if (rdev->saved_raid_disk < 0 && !_enough(conf, &conf->prev, -1))
Neil Brown199050e2008-06-28 08:31:33 +10001782 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
NeilBrowna53a6c82008-11-06 17:28:20 +11001784 if (rdev->raid_disk >= 0)
Neil Brown6c2fce22008-06-28 08:31:31 +10001785 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
NeilBrown050b6612012-03-19 12:46:39 +11001787 if (q->merge_bvec_fn) {
1788 set_bit(Unmerged, &rdev->flags);
1789 mddev->merge_check_needed = 1;
1790 }
1791
Namhyung Kim2c4193d2011-07-18 17:38:43 +10001792 if (rdev->saved_raid_disk >= first &&
NeilBrown6cce3b22006-01-06 00:20:16 -08001793 conf->mirrors[rdev->saved_raid_disk].rdev == NULL)
1794 mirror = rdev->saved_raid_disk;
1795 else
Neil Brown6c2fce22008-06-28 08:31:31 +10001796 mirror = first;
NeilBrown2bb77732011-07-27 11:00:36 +10001797 for ( ; mirror <= last ; mirror++) {
Jonathan Brassowdc280d982012-07-31 10:03:52 +10001798 struct raid10_info *p = &conf->mirrors[mirror];
NeilBrown2bb77732011-07-27 11:00:36 +10001799 if (p->recovery_disabled == mddev->recovery_disabled)
1800 continue;
NeilBrownb7044d42011-12-23 10:17:56 +11001801 if (p->rdev) {
1802 if (!test_bit(WantReplacement, &p->rdev->flags) ||
1803 p->replacement != NULL)
1804 continue;
1805 clear_bit(In_sync, &rdev->flags);
1806 set_bit(Replacement, &rdev->flags);
1807 rdev->raid_disk = mirror;
1808 err = 0;
1809 disk_stack_limits(mddev->gendisk, rdev->bdev,
1810 rdev->data_offset << 9);
NeilBrownb7044d42011-12-23 10:17:56 +11001811 conf->fullsync = 1;
1812 rcu_assign_pointer(p->replacement, rdev);
1813 break;
1814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
NeilBrown2bb77732011-07-27 11:00:36 +10001816 disk_stack_limits(mddev->gendisk, rdev->bdev,
1817 rdev->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
NeilBrown2bb77732011-07-27 11:00:36 +10001819 p->head_position = 0;
NeilBrownd890fa22011-10-26 11:54:39 +11001820 p->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown2bb77732011-07-27 11:00:36 +10001821 rdev->raid_disk = mirror;
1822 err = 0;
1823 if (rdev->saved_raid_disk != mirror)
1824 conf->fullsync = 1;
1825 rcu_assign_pointer(p->rdev, rdev);
1826 break;
1827 }
NeilBrown050b6612012-03-19 12:46:39 +11001828 if (err == 0 && test_bit(Unmerged, &rdev->flags)) {
1829 /* Some requests might not have seen this new
1830 * merge_bvec_fn. We must wait for them to complete
1831 * before merging the device fully.
1832 * First we make sure any code which has tested
1833 * our function has submitted the request, then
1834 * we wait for all outstanding requests to complete.
1835 */
1836 synchronize_sched();
1837 raise_barrier(conf, 0);
1838 lower_barrier(conf);
1839 clear_bit(Unmerged, &rdev->flags);
1840 }
Andre Nollac5e7112009-08-03 10:59:47 +10001841 md_integrity_add_rdev(rdev, mddev);
Jonathan Brassowed30be02012-10-31 11:42:30 +11001842 if (mddev->queue && blk_queue_discard(bdev_get_queue(rdev->bdev)))
Shaohua Li532a2a32012-10-11 13:30:52 +11001843 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, mddev->queue);
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001846 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
1848
NeilBrownb8321b62011-12-23 10:17:51 +11001849static int raid10_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
NeilBrowne879a872011-10-11 16:49:02 +11001851 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11001853 int number = rdev->raid_disk;
NeilBrownc8ab9032011-12-23 10:17:54 +11001854 struct md_rdev **rdevp;
Jonathan Brassowdc280d982012-07-31 10:03:52 +10001855 struct raid10_info *p = conf->mirrors + number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857 print_conf(conf);
NeilBrownc8ab9032011-12-23 10:17:54 +11001858 if (rdev == p->rdev)
1859 rdevp = &p->rdev;
1860 else if (rdev == p->replacement)
1861 rdevp = &p->replacement;
1862 else
1863 return 0;
1864
1865 if (test_bit(In_sync, &rdev->flags) ||
1866 atomic_read(&rdev->nr_pending)) {
1867 err = -EBUSY;
1868 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
NeilBrownc8ab9032011-12-23 10:17:54 +11001870 /* Only remove faulty devices if recovery
1871 * is not possible.
1872 */
1873 if (!test_bit(Faulty, &rdev->flags) &&
1874 mddev->recovery_disabled != p->recovery_disabled &&
NeilBrown4ca40c22011-12-23 10:17:55 +11001875 (!p->replacement || p->replacement == rdev) &&
NeilBrown63aced62012-05-22 13:55:33 +10001876 number < conf->geo.raid_disks &&
NeilBrownc8ab9032011-12-23 10:17:54 +11001877 enough(conf, -1)) {
1878 err = -EBUSY;
1879 goto abort;
1880 }
1881 *rdevp = NULL;
1882 synchronize_rcu();
1883 if (atomic_read(&rdev->nr_pending)) {
1884 /* lost the race, try later */
1885 err = -EBUSY;
1886 *rdevp = rdev;
1887 goto abort;
NeilBrown4ca40c22011-12-23 10:17:55 +11001888 } else if (p->replacement) {
1889 /* We must have just cleared 'rdev' */
1890 p->rdev = p->replacement;
1891 clear_bit(Replacement, &p->replacement->flags);
1892 smp_mb(); /* Make sure other CPUs may see both as identical
1893 * but will never see neither -- if they are careful.
1894 */
1895 p->replacement = NULL;
1896 clear_bit(WantReplacement, &rdev->flags);
1897 } else
1898 /* We might have just remove the Replacement as faulty
1899 * Clear the flag just in case
1900 */
1901 clear_bit(WantReplacement, &rdev->flags);
1902
NeilBrownc8ab9032011-12-23 10:17:54 +11001903 err = md_integrity_register(mddev);
1904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905abort:
1906
1907 print_conf(conf);
1908 return err;
1909}
1910
1911
NeilBrown6712ecf2007-09-27 12:47:43 +02001912static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913{
NeilBrown9f2c9d12011-10-11 16:48:43 +11001914 struct r10bio *r10_bio = bio->bi_private;
NeilBrowne879a872011-10-11 16:49:02 +11001915 struct r10conf *conf = r10_bio->mddev->private;
Namhyung Kim778ca012011-07-18 17:38:47 +10001916 int d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
NeilBrown3ea7daa2012-05-22 13:53:47 +10001918 if (bio == r10_bio->master_bio) {
1919 /* this is a reshape read */
1920 d = r10_bio->read_slot; /* really the read dev */
1921 } else
1922 d = find_bio_disk(conf, r10_bio, bio, NULL, NULL);
NeilBrown0eb3ff12006-01-06 00:20:29 -08001923
1924 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
1925 set_bit(R10BIO_Uptodate, &r10_bio->state);
NeilBrowne684e412011-07-28 11:39:25 +10001926 else
1927 /* The write handler will notice the lack of
1928 * R10BIO_Uptodate and record any errors etc
1929 */
NeilBrown4dbcdc72006-01-06 00:20:52 -08001930 atomic_add(r10_bio->sectors,
1931 &conf->mirrors[d].rdev->corrected_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 /* for reconstruct, we always reschedule after a read.
1934 * for resync, only after all reads
1935 */
NeilBrown73d5c382009-02-25 13:18:47 +11001936 rdev_dec_pending(conf->mirrors[d].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 if (test_bit(R10BIO_IsRecover, &r10_bio->state) ||
1938 atomic_dec_and_test(&r10_bio->remaining)) {
1939 /* we have read all the blocks,
1940 * do the comparison in process context in raid10d
1941 */
1942 reschedule_retry(r10_bio);
1943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944}
1945
NeilBrown9f2c9d12011-10-11 16:48:43 +11001946static void end_sync_request(struct r10bio *r10_bio)
NeilBrown5e570282011-07-28 11:39:25 +10001947{
NeilBrownfd01b882011-10-11 16:47:53 +11001948 struct mddev *mddev = r10_bio->mddev;
NeilBrown5e570282011-07-28 11:39:25 +10001949
1950 while (atomic_dec_and_test(&r10_bio->remaining)) {
1951 if (r10_bio->master_bio == NULL) {
1952 /* the primary of several recovery bios */
1953 sector_t s = r10_bio->sectors;
1954 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
1955 test_bit(R10BIO_WriteError, &r10_bio->state))
1956 reschedule_retry(r10_bio);
1957 else
1958 put_buf(r10_bio);
1959 md_done_sync(mddev, s, 1);
1960 break;
1961 } else {
NeilBrown9f2c9d12011-10-11 16:48:43 +11001962 struct r10bio *r10_bio2 = (struct r10bio *)r10_bio->master_bio;
NeilBrown5e570282011-07-28 11:39:25 +10001963 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
1964 test_bit(R10BIO_WriteError, &r10_bio->state))
1965 reschedule_retry(r10_bio);
1966 else
1967 put_buf(r10_bio);
1968 r10_bio = r10_bio2;
1969 }
1970 }
1971}
1972
NeilBrown6712ecf2007-09-27 12:47:43 +02001973static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974{
1975 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9f2c9d12011-10-11 16:48:43 +11001976 struct r10bio *r10_bio = bio->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11001977 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11001978 struct r10conf *conf = mddev->private;
Namhyung Kim778ca012011-07-18 17:38:47 +10001979 int d;
NeilBrown749c55e2011-07-28 11:39:24 +10001980 sector_t first_bad;
1981 int bad_sectors;
1982 int slot;
NeilBrown9ad1aef2011-12-23 10:17:55 +11001983 int repl;
NeilBrown4ca40c22011-12-23 10:17:55 +11001984 struct md_rdev *rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
NeilBrown9ad1aef2011-12-23 10:17:55 +11001986 d = find_bio_disk(conf, r10_bio, bio, &slot, &repl);
1987 if (repl)
1988 rdev = conf->mirrors[d].replacement;
NeilBrown547414d2012-03-13 11:21:20 +11001989 else
NeilBrown9ad1aef2011-12-23 10:17:55 +11001990 rdev = conf->mirrors[d].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
NeilBrown1a0b7cd2011-07-28 11:39:25 +10001992 if (!uptodate) {
NeilBrown9ad1aef2011-12-23 10:17:55 +11001993 if (repl)
1994 md_error(mddev, rdev);
1995 else {
1996 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11001997 if (!test_and_set_bit(WantReplacement, &rdev->flags))
1998 set_bit(MD_RECOVERY_NEEDED,
1999 &rdev->mddev->recovery);
NeilBrown9ad1aef2011-12-23 10:17:55 +11002000 set_bit(R10BIO_WriteError, &r10_bio->state);
2001 }
2002 } else if (is_badblock(rdev,
NeilBrown749c55e2011-07-28 11:39:24 +10002003 r10_bio->devs[slot].addr,
2004 r10_bio->sectors,
2005 &first_bad, &bad_sectors))
2006 set_bit(R10BIO_MadeGood, &r10_bio->state);
NeilBrowndfc70642008-05-23 13:04:39 -07002007
NeilBrown9ad1aef2011-12-23 10:17:55 +11002008 rdev_dec_pending(rdev, mddev);
NeilBrown5e570282011-07-28 11:39:25 +10002009
2010 end_sync_request(r10_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011}
2012
2013/*
2014 * Note: sync and recover and handled very differently for raid10
2015 * This code is for resync.
2016 * For resync, we read through virtual addresses and read all blocks.
2017 * If there is any error, we schedule a write. The lowest numbered
2018 * drive is authoritative.
2019 * However requests come for physical address, so we need to map.
2020 * For every physical address there are raid_disks/copies virtual addresses,
2021 * which is always are least one, but is not necessarly an integer.
2022 * This means that a physical address can span multiple chunks, so we may
2023 * have to submit multiple io requests for a single sync request.
2024 */
2025/*
2026 * We check if all blocks are in-sync and only write to blocks that
2027 * aren't in sync
2028 */
NeilBrown9f2c9d12011-10-11 16:48:43 +11002029static void sync_request_write(struct mddev *mddev, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030{
NeilBrowne879a872011-10-11 16:49:02 +11002031 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 int i, first;
2033 struct bio *tbio, *fbio;
majianpengf4380a92012-04-12 16:04:47 +10002034 int vcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 atomic_set(&r10_bio->remaining, 1);
2037
2038 /* find the first device with a block */
2039 for (i=0; i<conf->copies; i++)
2040 if (test_bit(BIO_UPTODATE, &r10_bio->devs[i].bio->bi_flags))
2041 break;
2042
2043 if (i == conf->copies)
2044 goto done;
2045
2046 first = i;
2047 fbio = r10_bio->devs[i].bio;
2048
majianpengf4380a92012-04-12 16:04:47 +10002049 vcnt = (r10_bio->sectors + (PAGE_SIZE >> 9) - 1) >> (PAGE_SHIFT - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 /* now find blocks with errors */
NeilBrown0eb3ff12006-01-06 00:20:29 -08002051 for (i=0 ; i < conf->copies ; i++) {
2052 int j, d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 tbio = r10_bio->devs[i].bio;
NeilBrown0eb3ff12006-01-06 00:20:29 -08002055
2056 if (tbio->bi_end_io != end_sync_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 continue;
NeilBrown0eb3ff12006-01-06 00:20:29 -08002058 if (i == first)
2059 continue;
2060 if (test_bit(BIO_UPTODATE, &r10_bio->devs[i].bio->bi_flags)) {
2061 /* We know that the bi_io_vec layout is the same for
2062 * both 'first' and 'i', so we just compare them.
2063 * All vec entries are PAGE_SIZE;
2064 */
2065 for (j = 0; j < vcnt; j++)
2066 if (memcmp(page_address(fbio->bi_io_vec[j].bv_page),
2067 page_address(tbio->bi_io_vec[j].bv_page),
NeilBrown5020ad72012-04-02 01:39:05 +10002068 fbio->bi_io_vec[j].bv_len))
NeilBrown0eb3ff12006-01-06 00:20:29 -08002069 break;
2070 if (j == vcnt)
2071 continue;
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11002072 atomic64_add(r10_bio->sectors, &mddev->resync_mismatches);
NeilBrownf84ee362011-07-28 11:39:25 +10002073 if (test_bit(MD_RECOVERY_CHECK, &mddev->recovery))
2074 /* Don't fix anything. */
2075 continue;
NeilBrown0eb3ff12006-01-06 00:20:29 -08002076 }
NeilBrownf84ee362011-07-28 11:39:25 +10002077 /* Ok, we need to write this bio, either to correct an
2078 * inconsistency or to correct an unreadable block.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 * First we need to fixup bv_offset, bv_len and
2080 * bi_vecs, as the read request might have corrupted these
2081 */
2082 tbio->bi_vcnt = vcnt;
2083 tbio->bi_size = r10_bio->sectors << 9;
2084 tbio->bi_idx = 0;
2085 tbio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 tbio->bi_flags &= ~(BIO_POOL_MASK - 1);
2087 tbio->bi_flags |= 1 << BIO_UPTODATE;
2088 tbio->bi_next = NULL;
2089 tbio->bi_rw = WRITE;
2090 tbio->bi_private = r10_bio;
2091 tbio->bi_sector = r10_bio->devs[i].addr;
2092
2093 for (j=0; j < vcnt ; j++) {
2094 tbio->bi_io_vec[j].bv_offset = 0;
2095 tbio->bi_io_vec[j].bv_len = PAGE_SIZE;
2096
2097 memcpy(page_address(tbio->bi_io_vec[j].bv_page),
2098 page_address(fbio->bi_io_vec[j].bv_page),
2099 PAGE_SIZE);
2100 }
2101 tbio->bi_end_io = end_sync_write;
2102
2103 d = r10_bio->devs[i].devnum;
2104 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
2105 atomic_inc(&r10_bio->remaining);
2106 md_sync_acct(conf->mirrors[d].rdev->bdev, tbio->bi_size >> 9);
2107
2108 tbio->bi_sector += conf->mirrors[d].rdev->data_offset;
2109 tbio->bi_bdev = conf->mirrors[d].rdev->bdev;
2110 generic_make_request(tbio);
2111 }
2112
NeilBrown9ad1aef2011-12-23 10:17:55 +11002113 /* Now write out to any replacement devices
2114 * that are active
2115 */
2116 for (i = 0; i < conf->copies; i++) {
2117 int j, d;
NeilBrown9ad1aef2011-12-23 10:17:55 +11002118
2119 tbio = r10_bio->devs[i].repl_bio;
2120 if (!tbio || !tbio->bi_end_io)
2121 continue;
2122 if (r10_bio->devs[i].bio->bi_end_io != end_sync_write
2123 && r10_bio->devs[i].bio != fbio)
2124 for (j = 0; j < vcnt; j++)
2125 memcpy(page_address(tbio->bi_io_vec[j].bv_page),
2126 page_address(fbio->bi_io_vec[j].bv_page),
2127 PAGE_SIZE);
2128 d = r10_bio->devs[i].devnum;
2129 atomic_inc(&r10_bio->remaining);
2130 md_sync_acct(conf->mirrors[d].replacement->bdev,
2131 tbio->bi_size >> 9);
2132 generic_make_request(tbio);
2133 }
2134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135done:
2136 if (atomic_dec_and_test(&r10_bio->remaining)) {
2137 md_done_sync(mddev, r10_bio->sectors, 1);
2138 put_buf(r10_bio);
2139 }
2140}
2141
2142/*
2143 * Now for the recovery code.
2144 * Recovery happens across physical sectors.
2145 * We recover all non-is_sync drives by finding the virtual address of
2146 * each, and then choose a working drive that also has that virt address.
2147 * There is a separate r10_bio for each non-in_sync drive.
2148 * Only the first two slots are in use. The first for reading,
2149 * The second for writing.
2150 *
2151 */
NeilBrown9f2c9d12011-10-11 16:48:43 +11002152static void fix_recovery_read_error(struct r10bio *r10_bio)
NeilBrown5e570282011-07-28 11:39:25 +10002153{
2154 /* We got a read error during recovery.
2155 * We repeat the read in smaller page-sized sections.
2156 * If a read succeeds, write it to the new device or record
2157 * a bad block if we cannot.
2158 * If a read fails, record a bad block on both old and
2159 * new devices.
2160 */
NeilBrownfd01b882011-10-11 16:47:53 +11002161 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11002162 struct r10conf *conf = mddev->private;
NeilBrown5e570282011-07-28 11:39:25 +10002163 struct bio *bio = r10_bio->devs[0].bio;
2164 sector_t sect = 0;
2165 int sectors = r10_bio->sectors;
2166 int idx = 0;
2167 int dr = r10_bio->devs[0].devnum;
2168 int dw = r10_bio->devs[1].devnum;
2169
2170 while (sectors) {
2171 int s = sectors;
NeilBrown3cb03002011-10-11 16:45:26 +11002172 struct md_rdev *rdev;
NeilBrown5e570282011-07-28 11:39:25 +10002173 sector_t addr;
2174 int ok;
2175
2176 if (s > (PAGE_SIZE>>9))
2177 s = PAGE_SIZE >> 9;
2178
2179 rdev = conf->mirrors[dr].rdev;
2180 addr = r10_bio->devs[0].addr + sect,
2181 ok = sync_page_io(rdev,
2182 addr,
2183 s << 9,
2184 bio->bi_io_vec[idx].bv_page,
2185 READ, false);
2186 if (ok) {
2187 rdev = conf->mirrors[dw].rdev;
2188 addr = r10_bio->devs[1].addr + sect;
2189 ok = sync_page_io(rdev,
2190 addr,
2191 s << 9,
2192 bio->bi_io_vec[idx].bv_page,
2193 WRITE, false);
NeilBrownb7044d42011-12-23 10:17:56 +11002194 if (!ok) {
NeilBrown5e570282011-07-28 11:39:25 +10002195 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11002196 if (!test_and_set_bit(WantReplacement,
2197 &rdev->flags))
2198 set_bit(MD_RECOVERY_NEEDED,
2199 &rdev->mddev->recovery);
2200 }
NeilBrown5e570282011-07-28 11:39:25 +10002201 }
2202 if (!ok) {
2203 /* We don't worry if we cannot set a bad block -
2204 * it really is bad so there is no loss in not
2205 * recording it yet
2206 */
2207 rdev_set_badblocks(rdev, addr, s, 0);
2208
2209 if (rdev != conf->mirrors[dw].rdev) {
2210 /* need bad block on destination too */
NeilBrown3cb03002011-10-11 16:45:26 +11002211 struct md_rdev *rdev2 = conf->mirrors[dw].rdev;
NeilBrown5e570282011-07-28 11:39:25 +10002212 addr = r10_bio->devs[1].addr + sect;
2213 ok = rdev_set_badblocks(rdev2, addr, s, 0);
2214 if (!ok) {
2215 /* just abort the recovery */
2216 printk(KERN_NOTICE
2217 "md/raid10:%s: recovery aborted"
2218 " due to read error\n",
2219 mdname(mddev));
2220
2221 conf->mirrors[dw].recovery_disabled
2222 = mddev->recovery_disabled;
2223 set_bit(MD_RECOVERY_INTR,
2224 &mddev->recovery);
2225 break;
2226 }
2227 }
2228 }
2229
2230 sectors -= s;
2231 sect += s;
2232 idx++;
2233 }
2234}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
NeilBrown9f2c9d12011-10-11 16:48:43 +11002236static void recovery_request_write(struct mddev *mddev, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237{
NeilBrowne879a872011-10-11 16:49:02 +11002238 struct r10conf *conf = mddev->private;
Namhyung Kimc65060a2011-07-18 17:38:49 +10002239 int d;
NeilBrown24afd802011-12-23 10:17:55 +11002240 struct bio *wbio, *wbio2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
NeilBrown5e570282011-07-28 11:39:25 +10002242 if (!test_bit(R10BIO_Uptodate, &r10_bio->state)) {
2243 fix_recovery_read_error(r10_bio);
2244 end_sync_request(r10_bio);
2245 return;
2246 }
2247
Namhyung Kimc65060a2011-07-18 17:38:49 +10002248 /*
2249 * share the pages with the first bio
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 * and submit the write request
2251 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 d = r10_bio->devs[1].devnum;
NeilBrown24afd802011-12-23 10:17:55 +11002253 wbio = r10_bio->devs[1].bio;
2254 wbio2 = r10_bio->devs[1].repl_bio;
2255 if (wbio->bi_end_io) {
2256 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
2257 md_sync_acct(conf->mirrors[d].rdev->bdev, wbio->bi_size >> 9);
2258 generic_make_request(wbio);
2259 }
2260 if (wbio2 && wbio2->bi_end_io) {
2261 atomic_inc(&conf->mirrors[d].replacement->nr_pending);
2262 md_sync_acct(conf->mirrors[d].replacement->bdev,
2263 wbio2->bi_size >> 9);
2264 generic_make_request(wbio2);
2265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266}
2267
2268
2269/*
Robert Becker1e509152009-12-14 12:49:58 +11002270 * Used by fix_read_error() to decay the per rdev read_errors.
2271 * We halve the read error count for every hour that has elapsed
2272 * since the last recorded read error.
2273 *
2274 */
NeilBrownfd01b882011-10-11 16:47:53 +11002275static void check_decay_read_errors(struct mddev *mddev, struct md_rdev *rdev)
Robert Becker1e509152009-12-14 12:49:58 +11002276{
2277 struct timespec cur_time_mon;
2278 unsigned long hours_since_last;
2279 unsigned int read_errors = atomic_read(&rdev->read_errors);
2280
2281 ktime_get_ts(&cur_time_mon);
2282
2283 if (rdev->last_read_error.tv_sec == 0 &&
2284 rdev->last_read_error.tv_nsec == 0) {
2285 /* first time we've seen a read error */
2286 rdev->last_read_error = cur_time_mon;
2287 return;
2288 }
2289
2290 hours_since_last = (cur_time_mon.tv_sec -
2291 rdev->last_read_error.tv_sec) / 3600;
2292
2293 rdev->last_read_error = cur_time_mon;
2294
2295 /*
2296 * if hours_since_last is > the number of bits in read_errors
2297 * just set read errors to 0. We do this to avoid
2298 * overflowing the shift of read_errors by hours_since_last.
2299 */
2300 if (hours_since_last >= 8 * sizeof(read_errors))
2301 atomic_set(&rdev->read_errors, 0);
2302 else
2303 atomic_set(&rdev->read_errors, read_errors >> hours_since_last);
2304}
2305
NeilBrown3cb03002011-10-11 16:45:26 +11002306static int r10_sync_page_io(struct md_rdev *rdev, sector_t sector,
NeilBrown58c54fc2011-07-28 11:39:25 +10002307 int sectors, struct page *page, int rw)
2308{
2309 sector_t first_bad;
2310 int bad_sectors;
2311
2312 if (is_badblock(rdev, sector, sectors, &first_bad, &bad_sectors)
2313 && (rw == READ || test_bit(WriteErrorSeen, &rdev->flags)))
2314 return -1;
2315 if (sync_page_io(rdev, sector, sectors << 9, page, rw, false))
2316 /* success */
2317 return 1;
NeilBrownb7044d42011-12-23 10:17:56 +11002318 if (rw == WRITE) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002319 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11002320 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2321 set_bit(MD_RECOVERY_NEEDED,
2322 &rdev->mddev->recovery);
2323 }
NeilBrown58c54fc2011-07-28 11:39:25 +10002324 /* need to record an error - either for the block or the device */
2325 if (!rdev_set_badblocks(rdev, sector, sectors, 0))
2326 md_error(rdev->mddev, rdev);
2327 return 0;
2328}
2329
Robert Becker1e509152009-12-14 12:49:58 +11002330/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 * This is a kernel thread which:
2332 *
2333 * 1. Retries failed read operations on working mirrors.
2334 * 2. Updates the raid superblock when problems encounter.
NeilBrown6814d532006-10-03 01:15:45 -07002335 * 3. Performs writes following reads for array synchronising.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 */
2337
NeilBrowne879a872011-10-11 16:49:02 +11002338static void fix_read_error(struct r10conf *conf, struct mddev *mddev, struct r10bio *r10_bio)
NeilBrown6814d532006-10-03 01:15:45 -07002339{
2340 int sect = 0; /* Offset from r10_bio->sector */
2341 int sectors = r10_bio->sectors;
NeilBrown3cb03002011-10-11 16:45:26 +11002342 struct md_rdev*rdev;
Robert Becker1e509152009-12-14 12:49:58 +11002343 int max_read_errors = atomic_read(&mddev->max_corr_read_errors);
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002344 int d = r10_bio->devs[r10_bio->read_slot].devnum;
Robert Becker1e509152009-12-14 12:49:58 +11002345
NeilBrown7c4e06f2011-05-11 14:53:17 +10002346 /* still own a reference to this rdev, so it cannot
2347 * have been cleared recently.
2348 */
2349 rdev = conf->mirrors[d].rdev;
Robert Becker1e509152009-12-14 12:49:58 +11002350
NeilBrown7c4e06f2011-05-11 14:53:17 +10002351 if (test_bit(Faulty, &rdev->flags))
2352 /* drive has already been failed, just ignore any
2353 more fix_read_error() attempts */
2354 return;
2355
2356 check_decay_read_errors(mddev, rdev);
2357 atomic_inc(&rdev->read_errors);
2358 if (atomic_read(&rdev->read_errors) > max_read_errors) {
2359 char b[BDEVNAME_SIZE];
Robert Becker1e509152009-12-14 12:49:58 +11002360 bdevname(rdev->bdev, b);
2361
NeilBrown7c4e06f2011-05-11 14:53:17 +10002362 printk(KERN_NOTICE
2363 "md/raid10:%s: %s: Raid device exceeded "
2364 "read_error threshold [cur %d:max %d]\n",
2365 mdname(mddev), b,
2366 atomic_read(&rdev->read_errors), max_read_errors);
2367 printk(KERN_NOTICE
2368 "md/raid10:%s: %s: Failing raid device\n",
2369 mdname(mddev), b);
2370 md_error(mddev, conf->mirrors[d].rdev);
NeilBrownfae8cc52012-02-14 11:10:10 +11002371 r10_bio->devs[r10_bio->read_slot].bio = IO_BLOCKED;
NeilBrown7c4e06f2011-05-11 14:53:17 +10002372 return;
Robert Becker1e509152009-12-14 12:49:58 +11002373 }
Robert Becker1e509152009-12-14 12:49:58 +11002374
NeilBrown6814d532006-10-03 01:15:45 -07002375 while(sectors) {
2376 int s = sectors;
2377 int sl = r10_bio->read_slot;
2378 int success = 0;
2379 int start;
2380
2381 if (s > (PAGE_SIZE>>9))
2382 s = PAGE_SIZE >> 9;
2383
2384 rcu_read_lock();
2385 do {
NeilBrown8dbed5c2011-07-28 11:39:24 +10002386 sector_t first_bad;
2387 int bad_sectors;
2388
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002389 d = r10_bio->devs[sl].devnum;
NeilBrown6814d532006-10-03 01:15:45 -07002390 rdev = rcu_dereference(conf->mirrors[d].rdev);
2391 if (rdev &&
NeilBrown050b6612012-03-19 12:46:39 +11002392 !test_bit(Unmerged, &rdev->flags) &&
NeilBrown8dbed5c2011-07-28 11:39:24 +10002393 test_bit(In_sync, &rdev->flags) &&
2394 is_badblock(rdev, r10_bio->devs[sl].addr + sect, s,
2395 &first_bad, &bad_sectors) == 0) {
NeilBrown6814d532006-10-03 01:15:45 -07002396 atomic_inc(&rdev->nr_pending);
2397 rcu_read_unlock();
NeilBrown2b193362010-10-27 15:16:40 +11002398 success = sync_page_io(rdev,
NeilBrown6814d532006-10-03 01:15:45 -07002399 r10_bio->devs[sl].addr +
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11002400 sect,
NeilBrown6814d532006-10-03 01:15:45 -07002401 s<<9,
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11002402 conf->tmppage, READ, false);
NeilBrown6814d532006-10-03 01:15:45 -07002403 rdev_dec_pending(rdev, mddev);
2404 rcu_read_lock();
2405 if (success)
2406 break;
2407 }
2408 sl++;
2409 if (sl == conf->copies)
2410 sl = 0;
2411 } while (!success && sl != r10_bio->read_slot);
2412 rcu_read_unlock();
2413
2414 if (!success) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002415 /* Cannot read from anywhere, just mark the block
2416 * as bad on the first device to discourage future
2417 * reads.
2418 */
NeilBrown6814d532006-10-03 01:15:45 -07002419 int dn = r10_bio->devs[r10_bio->read_slot].devnum;
NeilBrown58c54fc2011-07-28 11:39:25 +10002420 rdev = conf->mirrors[dn].rdev;
2421
2422 if (!rdev_set_badblocks(
2423 rdev,
2424 r10_bio->devs[r10_bio->read_slot].addr
2425 + sect,
NeilBrownfae8cc52012-02-14 11:10:10 +11002426 s, 0)) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002427 md_error(mddev, rdev);
NeilBrownfae8cc52012-02-14 11:10:10 +11002428 r10_bio->devs[r10_bio->read_slot].bio
2429 = IO_BLOCKED;
2430 }
NeilBrown6814d532006-10-03 01:15:45 -07002431 break;
2432 }
2433
2434 start = sl;
2435 /* write it back and re-read */
2436 rcu_read_lock();
2437 while (sl != r10_bio->read_slot) {
Robert Becker67b8dc42009-12-14 12:49:57 +11002438 char b[BDEVNAME_SIZE];
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002439
NeilBrown6814d532006-10-03 01:15:45 -07002440 if (sl==0)
2441 sl = conf->copies;
2442 sl--;
2443 d = r10_bio->devs[sl].devnum;
2444 rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown1294b9c2011-07-28 11:39:23 +10002445 if (!rdev ||
NeilBrown050b6612012-03-19 12:46:39 +11002446 test_bit(Unmerged, &rdev->flags) ||
NeilBrown1294b9c2011-07-28 11:39:23 +10002447 !test_bit(In_sync, &rdev->flags))
2448 continue;
2449
2450 atomic_inc(&rdev->nr_pending);
2451 rcu_read_unlock();
NeilBrown58c54fc2011-07-28 11:39:25 +10002452 if (r10_sync_page_io(rdev,
2453 r10_bio->devs[sl].addr +
2454 sect,
NeilBrown055d3742012-07-03 15:55:33 +10002455 s, conf->tmppage, WRITE)
NeilBrown1294b9c2011-07-28 11:39:23 +10002456 == 0) {
2457 /* Well, this device is dead */
2458 printk(KERN_NOTICE
2459 "md/raid10:%s: read correction "
2460 "write failed"
2461 " (%d sectors at %llu on %s)\n",
2462 mdname(mddev), s,
2463 (unsigned long long)(
NeilBrownf8c9e742012-05-21 09:28:33 +10002464 sect +
2465 choose_data_offset(r10_bio,
2466 rdev)),
NeilBrown1294b9c2011-07-28 11:39:23 +10002467 bdevname(rdev->bdev, b));
2468 printk(KERN_NOTICE "md/raid10:%s: %s: failing "
2469 "drive\n",
2470 mdname(mddev),
2471 bdevname(rdev->bdev, b));
NeilBrown6814d532006-10-03 01:15:45 -07002472 }
NeilBrown1294b9c2011-07-28 11:39:23 +10002473 rdev_dec_pending(rdev, mddev);
2474 rcu_read_lock();
NeilBrown6814d532006-10-03 01:15:45 -07002475 }
2476 sl = start;
2477 while (sl != r10_bio->read_slot) {
NeilBrown1294b9c2011-07-28 11:39:23 +10002478 char b[BDEVNAME_SIZE];
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002479
NeilBrown6814d532006-10-03 01:15:45 -07002480 if (sl==0)
2481 sl = conf->copies;
2482 sl--;
2483 d = r10_bio->devs[sl].devnum;
2484 rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown1294b9c2011-07-28 11:39:23 +10002485 if (!rdev ||
2486 !test_bit(In_sync, &rdev->flags))
2487 continue;
Robert Becker67b8dc42009-12-14 12:49:57 +11002488
NeilBrown1294b9c2011-07-28 11:39:23 +10002489 atomic_inc(&rdev->nr_pending);
2490 rcu_read_unlock();
NeilBrown58c54fc2011-07-28 11:39:25 +10002491 switch (r10_sync_page_io(rdev,
2492 r10_bio->devs[sl].addr +
2493 sect,
NeilBrown055d3742012-07-03 15:55:33 +10002494 s, conf->tmppage,
NeilBrown58c54fc2011-07-28 11:39:25 +10002495 READ)) {
2496 case 0:
NeilBrown1294b9c2011-07-28 11:39:23 +10002497 /* Well, this device is dead */
2498 printk(KERN_NOTICE
2499 "md/raid10:%s: unable to read back "
2500 "corrected sectors"
2501 " (%d sectors at %llu on %s)\n",
2502 mdname(mddev), s,
2503 (unsigned long long)(
NeilBrownf8c9e742012-05-21 09:28:33 +10002504 sect +
2505 choose_data_offset(r10_bio, rdev)),
NeilBrown1294b9c2011-07-28 11:39:23 +10002506 bdevname(rdev->bdev, b));
2507 printk(KERN_NOTICE "md/raid10:%s: %s: failing "
2508 "drive\n",
2509 mdname(mddev),
2510 bdevname(rdev->bdev, b));
NeilBrown58c54fc2011-07-28 11:39:25 +10002511 break;
2512 case 1:
NeilBrown1294b9c2011-07-28 11:39:23 +10002513 printk(KERN_INFO
2514 "md/raid10:%s: read error corrected"
2515 " (%d sectors at %llu on %s)\n",
2516 mdname(mddev), s,
2517 (unsigned long long)(
NeilBrownf8c9e742012-05-21 09:28:33 +10002518 sect +
2519 choose_data_offset(r10_bio, rdev)),
NeilBrown1294b9c2011-07-28 11:39:23 +10002520 bdevname(rdev->bdev, b));
2521 atomic_add(s, &rdev->corrected_errors);
NeilBrown6814d532006-10-03 01:15:45 -07002522 }
NeilBrown1294b9c2011-07-28 11:39:23 +10002523
2524 rdev_dec_pending(rdev, mddev);
2525 rcu_read_lock();
NeilBrown6814d532006-10-03 01:15:45 -07002526 }
2527 rcu_read_unlock();
2528
2529 sectors -= s;
2530 sect += s;
2531 }
2532}
2533
NeilBrownbd870a12011-07-28 11:39:24 +10002534static void bi_complete(struct bio *bio, int error)
2535{
2536 complete((struct completion *)bio->bi_private);
2537}
2538
2539static int submit_bio_wait(int rw, struct bio *bio)
2540{
2541 struct completion event;
2542 rw |= REQ_SYNC;
2543
2544 init_completion(&event);
2545 bio->bi_private = &event;
2546 bio->bi_end_io = bi_complete;
2547 submit_bio(rw, bio);
2548 wait_for_completion(&event);
2549
2550 return test_bit(BIO_UPTODATE, &bio->bi_flags);
2551}
2552
NeilBrown9f2c9d12011-10-11 16:48:43 +11002553static int narrow_write_error(struct r10bio *r10_bio, int i)
NeilBrownbd870a12011-07-28 11:39:24 +10002554{
2555 struct bio *bio = r10_bio->master_bio;
NeilBrownfd01b882011-10-11 16:47:53 +11002556 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11002557 struct r10conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11002558 struct md_rdev *rdev = conf->mirrors[r10_bio->devs[i].devnum].rdev;
NeilBrownbd870a12011-07-28 11:39:24 +10002559 /* bio has the data to be written to slot 'i' where
2560 * we just recently had a write error.
2561 * We repeatedly clone the bio and trim down to one block,
2562 * then try the write. Where the write fails we record
2563 * a bad block.
2564 * It is conceivable that the bio doesn't exactly align with
2565 * blocks. We must handle this.
2566 *
2567 * We currently own a reference to the rdev.
2568 */
2569
2570 int block_sectors;
2571 sector_t sector;
2572 int sectors;
2573 int sect_to_write = r10_bio->sectors;
2574 int ok = 1;
2575
2576 if (rdev->badblocks.shift < 0)
2577 return 0;
2578
2579 block_sectors = 1 << rdev->badblocks.shift;
2580 sector = r10_bio->sector;
2581 sectors = ((r10_bio->sector + block_sectors)
2582 & ~(sector_t)(block_sectors - 1))
2583 - sector;
2584
2585 while (sect_to_write) {
2586 struct bio *wbio;
2587 if (sectors > sect_to_write)
2588 sectors = sect_to_write;
2589 /* Write at 'sector' for 'sectors' */
2590 wbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
2591 md_trim_bio(wbio, sector - bio->bi_sector, sectors);
2592 wbio->bi_sector = (r10_bio->devs[i].addr+
NeilBrownf8c9e742012-05-21 09:28:33 +10002593 choose_data_offset(r10_bio, rdev) +
NeilBrownbd870a12011-07-28 11:39:24 +10002594 (sector - r10_bio->sector));
2595 wbio->bi_bdev = rdev->bdev;
2596 if (submit_bio_wait(WRITE, wbio) == 0)
2597 /* Failure! */
2598 ok = rdev_set_badblocks(rdev, sector,
2599 sectors, 0)
2600 && ok;
2601
2602 bio_put(wbio);
2603 sect_to_write -= sectors;
2604 sector += sectors;
2605 sectors = block_sectors;
2606 }
2607 return ok;
2608}
2609
NeilBrown9f2c9d12011-10-11 16:48:43 +11002610static void handle_read_error(struct mddev *mddev, struct r10bio *r10_bio)
NeilBrown560f8e52011-07-28 11:39:23 +10002611{
2612 int slot = r10_bio->read_slot;
NeilBrown560f8e52011-07-28 11:39:23 +10002613 struct bio *bio;
NeilBrowne879a872011-10-11 16:49:02 +11002614 struct r10conf *conf = mddev->private;
NeilBrownabbf0982011-12-23 10:17:54 +11002615 struct md_rdev *rdev = r10_bio->devs[slot].rdev;
NeilBrown560f8e52011-07-28 11:39:23 +10002616 char b[BDEVNAME_SIZE];
2617 unsigned long do_sync;
NeilBrown856e08e2011-07-28 11:39:23 +10002618 int max_sectors;
NeilBrown560f8e52011-07-28 11:39:23 +10002619
2620 /* we got a read error. Maybe the drive is bad. Maybe just
2621 * the block and we can fix it.
2622 * We freeze all other IO, and try reading the block from
2623 * other devices. When we find one, we re-write
2624 * and check it that fixes the read error.
2625 * This is all done synchronously while the array is
2626 * frozen.
2627 */
NeilBrownfae8cc52012-02-14 11:10:10 +11002628 bio = r10_bio->devs[slot].bio;
2629 bdevname(bio->bi_bdev, b);
2630 bio_put(bio);
2631 r10_bio->devs[slot].bio = NULL;
2632
NeilBrown560f8e52011-07-28 11:39:23 +10002633 if (mddev->ro == 0) {
2634 freeze_array(conf);
2635 fix_read_error(conf, mddev, r10_bio);
2636 unfreeze_array(conf);
NeilBrownfae8cc52012-02-14 11:10:10 +11002637 } else
2638 r10_bio->devs[slot].bio = IO_BLOCKED;
2639
NeilBrownabbf0982011-12-23 10:17:54 +11002640 rdev_dec_pending(rdev, mddev);
NeilBrown560f8e52011-07-28 11:39:23 +10002641
NeilBrown7399c312011-07-28 11:39:23 +10002642read_more:
NeilBrown96c3fd12011-12-23 10:17:54 +11002643 rdev = read_balance(conf, r10_bio, &max_sectors);
2644 if (rdev == NULL) {
NeilBrown560f8e52011-07-28 11:39:23 +10002645 printk(KERN_ALERT "md/raid10:%s: %s: unrecoverable I/O"
2646 " read error for block %llu\n",
NeilBrown7399c312011-07-28 11:39:23 +10002647 mdname(mddev), b,
NeilBrown560f8e52011-07-28 11:39:23 +10002648 (unsigned long long)r10_bio->sector);
2649 raid_end_bio_io(r10_bio);
NeilBrown560f8e52011-07-28 11:39:23 +10002650 return;
2651 }
2652
2653 do_sync = (r10_bio->master_bio->bi_rw & REQ_SYNC);
NeilBrown560f8e52011-07-28 11:39:23 +10002654 slot = r10_bio->read_slot;
NeilBrown560f8e52011-07-28 11:39:23 +10002655 printk_ratelimited(
2656 KERN_ERR
NeilBrown055d3742012-07-03 15:55:33 +10002657 "md/raid10:%s: %s: redirecting "
NeilBrown560f8e52011-07-28 11:39:23 +10002658 "sector %llu to another mirror\n",
2659 mdname(mddev),
2660 bdevname(rdev->bdev, b),
2661 (unsigned long long)r10_bio->sector);
2662 bio = bio_clone_mddev(r10_bio->master_bio,
2663 GFP_NOIO, mddev);
NeilBrown7399c312011-07-28 11:39:23 +10002664 md_trim_bio(bio,
2665 r10_bio->sector - bio->bi_sector,
2666 max_sectors);
NeilBrown560f8e52011-07-28 11:39:23 +10002667 r10_bio->devs[slot].bio = bio;
NeilBrownabbf0982011-12-23 10:17:54 +11002668 r10_bio->devs[slot].rdev = rdev;
NeilBrown560f8e52011-07-28 11:39:23 +10002669 bio->bi_sector = r10_bio->devs[slot].addr
NeilBrownf8c9e742012-05-21 09:28:33 +10002670 + choose_data_offset(r10_bio, rdev);
NeilBrown560f8e52011-07-28 11:39:23 +10002671 bio->bi_bdev = rdev->bdev;
2672 bio->bi_rw = READ | do_sync;
2673 bio->bi_private = r10_bio;
2674 bio->bi_end_io = raid10_end_read_request;
NeilBrown7399c312011-07-28 11:39:23 +10002675 if (max_sectors < r10_bio->sectors) {
2676 /* Drat - have to split this up more */
2677 struct bio *mbio = r10_bio->master_bio;
2678 int sectors_handled =
2679 r10_bio->sector + max_sectors
2680 - mbio->bi_sector;
2681 r10_bio->sectors = max_sectors;
2682 spin_lock_irq(&conf->device_lock);
2683 if (mbio->bi_phys_segments == 0)
2684 mbio->bi_phys_segments = 2;
2685 else
2686 mbio->bi_phys_segments++;
2687 spin_unlock_irq(&conf->device_lock);
2688 generic_make_request(bio);
NeilBrown7399c312011-07-28 11:39:23 +10002689
2690 r10_bio = mempool_alloc(conf->r10bio_pool,
2691 GFP_NOIO);
2692 r10_bio->master_bio = mbio;
2693 r10_bio->sectors = (mbio->bi_size >> 9)
2694 - sectors_handled;
2695 r10_bio->state = 0;
2696 set_bit(R10BIO_ReadError,
2697 &r10_bio->state);
2698 r10_bio->mddev = mddev;
2699 r10_bio->sector = mbio->bi_sector
2700 + sectors_handled;
2701
2702 goto read_more;
2703 } else
2704 generic_make_request(bio);
NeilBrown560f8e52011-07-28 11:39:23 +10002705}
2706
NeilBrowne879a872011-10-11 16:49:02 +11002707static void handle_write_completed(struct r10conf *conf, struct r10bio *r10_bio)
NeilBrown749c55e2011-07-28 11:39:24 +10002708{
2709 /* Some sort of write request has finished and it
2710 * succeeded in writing where we thought there was a
2711 * bad block. So forget the bad block.
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002712 * Or possibly if failed and we need to record
2713 * a bad block.
NeilBrown749c55e2011-07-28 11:39:24 +10002714 */
2715 int m;
NeilBrown3cb03002011-10-11 16:45:26 +11002716 struct md_rdev *rdev;
NeilBrown749c55e2011-07-28 11:39:24 +10002717
2718 if (test_bit(R10BIO_IsSync, &r10_bio->state) ||
2719 test_bit(R10BIO_IsRecover, &r10_bio->state)) {
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002720 for (m = 0; m < conf->copies; m++) {
2721 int dev = r10_bio->devs[m].devnum;
2722 rdev = conf->mirrors[dev].rdev;
2723 if (r10_bio->devs[m].bio == NULL)
2724 continue;
2725 if (test_bit(BIO_UPTODATE,
NeilBrown749c55e2011-07-28 11:39:24 +10002726 &r10_bio->devs[m].bio->bi_flags)) {
NeilBrown749c55e2011-07-28 11:39:24 +10002727 rdev_clear_badblocks(
2728 rdev,
2729 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002730 r10_bio->sectors, 0);
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002731 } else {
2732 if (!rdev_set_badblocks(
2733 rdev,
2734 r10_bio->devs[m].addr,
2735 r10_bio->sectors, 0))
2736 md_error(conf->mddev, rdev);
NeilBrown749c55e2011-07-28 11:39:24 +10002737 }
NeilBrown9ad1aef2011-12-23 10:17:55 +11002738 rdev = conf->mirrors[dev].replacement;
2739 if (r10_bio->devs[m].repl_bio == NULL)
2740 continue;
2741 if (test_bit(BIO_UPTODATE,
2742 &r10_bio->devs[m].repl_bio->bi_flags)) {
2743 rdev_clear_badblocks(
2744 rdev,
2745 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002746 r10_bio->sectors, 0);
NeilBrown9ad1aef2011-12-23 10:17:55 +11002747 } else {
2748 if (!rdev_set_badblocks(
2749 rdev,
2750 r10_bio->devs[m].addr,
2751 r10_bio->sectors, 0))
2752 md_error(conf->mddev, rdev);
2753 }
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002754 }
NeilBrown749c55e2011-07-28 11:39:24 +10002755 put_buf(r10_bio);
2756 } else {
NeilBrownbd870a12011-07-28 11:39:24 +10002757 for (m = 0; m < conf->copies; m++) {
2758 int dev = r10_bio->devs[m].devnum;
2759 struct bio *bio = r10_bio->devs[m].bio;
2760 rdev = conf->mirrors[dev].rdev;
2761 if (bio == IO_MADE_GOOD) {
NeilBrown749c55e2011-07-28 11:39:24 +10002762 rdev_clear_badblocks(
2763 rdev,
2764 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002765 r10_bio->sectors, 0);
NeilBrown749c55e2011-07-28 11:39:24 +10002766 rdev_dec_pending(rdev, conf->mddev);
NeilBrownbd870a12011-07-28 11:39:24 +10002767 } else if (bio != NULL &&
2768 !test_bit(BIO_UPTODATE, &bio->bi_flags)) {
2769 if (!narrow_write_error(r10_bio, m)) {
2770 md_error(conf->mddev, rdev);
2771 set_bit(R10BIO_Degraded,
2772 &r10_bio->state);
2773 }
2774 rdev_dec_pending(rdev, conf->mddev);
NeilBrown749c55e2011-07-28 11:39:24 +10002775 }
NeilBrown475b0322011-12-23 10:17:55 +11002776 bio = r10_bio->devs[m].repl_bio;
2777 rdev = conf->mirrors[dev].replacement;
NeilBrown4ca40c22011-12-23 10:17:55 +11002778 if (rdev && bio == IO_MADE_GOOD) {
NeilBrown475b0322011-12-23 10:17:55 +11002779 rdev_clear_badblocks(
2780 rdev,
2781 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002782 r10_bio->sectors, 0);
NeilBrown475b0322011-12-23 10:17:55 +11002783 rdev_dec_pending(rdev, conf->mddev);
2784 }
NeilBrownbd870a12011-07-28 11:39:24 +10002785 }
2786 if (test_bit(R10BIO_WriteError,
2787 &r10_bio->state))
2788 close_write(r10_bio);
NeilBrown749c55e2011-07-28 11:39:24 +10002789 raid_end_bio_io(r10_bio);
2790 }
2791}
2792
Shaohua Li4ed87312012-10-11 13:34:00 +11002793static void raid10d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794{
Shaohua Li4ed87312012-10-11 13:34:00 +11002795 struct mddev *mddev = thread->mddev;
NeilBrown9f2c9d12011-10-11 16:48:43 +11002796 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 unsigned long flags;
NeilBrowne879a872011-10-11 16:49:02 +11002798 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 struct list_head *head = &conf->retry_list;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002800 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
2802 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002804 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 for (;;) {
NeilBrowna35e63e2008-03-04 14:29:29 -08002806
NeilBrown0021b7b2012-07-31 09:08:14 +02002807 flush_pending_writes(conf);
NeilBrowna35e63e2008-03-04 14:29:29 -08002808
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08002810 if (list_empty(head)) {
NeilBrown6cce3b22006-01-06 00:20:16 -08002811 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08002813 }
NeilBrown9f2c9d12011-10-11 16:48:43 +11002814 r10_bio = list_entry(head->prev, struct r10bio, retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 list_del(head->prev);
NeilBrown4443ae12006-01-06 00:20:28 -08002816 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 spin_unlock_irqrestore(&conf->device_lock, flags);
2818
2819 mddev = r10_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10002820 conf = mddev->private;
NeilBrownbd870a12011-07-28 11:39:24 +10002821 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
2822 test_bit(R10BIO_WriteError, &r10_bio->state))
NeilBrown749c55e2011-07-28 11:39:24 +10002823 handle_write_completed(conf, r10_bio);
NeilBrown3ea7daa2012-05-22 13:53:47 +10002824 else if (test_bit(R10BIO_IsReshape, &r10_bio->state))
2825 reshape_request_write(mddev, r10_bio);
NeilBrown749c55e2011-07-28 11:39:24 +10002826 else if (test_bit(R10BIO_IsSync, &r10_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 sync_request_write(mddev, r10_bio);
Jens Axboe7eaceac2011-03-10 08:52:07 +01002828 else if (test_bit(R10BIO_IsRecover, &r10_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 recovery_request_write(mddev, r10_bio);
NeilBrown856e08e2011-07-28 11:39:23 +10002830 else if (test_bit(R10BIO_ReadError, &r10_bio->state))
NeilBrown560f8e52011-07-28 11:39:23 +10002831 handle_read_error(mddev, r10_bio);
NeilBrown856e08e2011-07-28 11:39:23 +10002832 else {
2833 /* just a partial read to be scheduled from a
2834 * separate context
2835 */
2836 int slot = r10_bio->read_slot;
2837 generic_make_request(r10_bio->devs[slot].bio);
2838 }
NeilBrown4443ae12006-01-06 00:20:28 -08002839
NeilBrown1d9d5242009-10-16 15:55:32 +11002840 cond_resched();
NeilBrownde393cd2011-07-28 11:31:48 +10002841 if (mddev->flags & ~(1<<MD_CHANGE_PENDING))
2842 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 }
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002844 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845}
2846
2847
NeilBrowne879a872011-10-11 16:49:02 +11002848static int init_resync(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849{
2850 int buffs;
NeilBrown69335ef2011-12-23 10:17:54 +11002851 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
2853 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhennb6385482006-04-02 13:34:29 +02002854 BUG_ON(conf->r10buf_pool);
NeilBrown69335ef2011-12-23 10:17:54 +11002855 conf->have_replacement = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +10002856 for (i = 0; i < conf->geo.raid_disks; i++)
NeilBrown69335ef2011-12-23 10:17:54 +11002857 if (conf->mirrors[i].replacement)
2858 conf->have_replacement = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 conf->r10buf_pool = mempool_create(buffs, r10buf_pool_alloc, r10buf_pool_free, conf);
2860 if (!conf->r10buf_pool)
2861 return -ENOMEM;
2862 conf->next_resync = 0;
2863 return 0;
2864}
2865
2866/*
2867 * perform a "sync" on one "block"
2868 *
2869 * We need to make sure that no normal I/O request - particularly write
2870 * requests - conflict with active sync requests.
2871 *
2872 * This is achieved by tracking pending requests and a 'barrier' concept
2873 * that can be installed to exclude normal IO requests.
2874 *
2875 * Resync and recovery are handled very differently.
2876 * We differentiate by looking at MD_RECOVERY_SYNC in mddev->recovery.
2877 *
2878 * For resync, we iterate over virtual addresses, read all copies,
2879 * and update if there are differences. If only one copy is live,
2880 * skip it.
2881 * For recovery, we iterate over physical addresses, read a good
2882 * value for each non-in_sync drive, and over-write.
2883 *
2884 * So, for recovery we may have several outstanding complex requests for a
2885 * given address, one for each out-of-sync device. We model this by allocating
2886 * a number of r10_bio structures, one for each out-of-sync device.
2887 * As we setup these structures, we collect all bio's together into a list
2888 * which we then process collectively to add pages, and then process again
2889 * to pass to generic_make_request.
2890 *
2891 * The r10_bio structures are linked using a borrowed master_bio pointer.
2892 * This link is counted in ->remaining. When the r10_bio that points to NULL
2893 * has its remaining count decremented to 0, the whole complex operation
2894 * is complete.
2895 *
2896 */
2897
NeilBrownfd01b882011-10-11 16:47:53 +11002898static sector_t sync_request(struct mddev *mddev, sector_t sector_nr,
NeilBrownab9d47e2011-05-11 14:54:41 +10002899 int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900{
NeilBrowne879a872011-10-11 16:49:02 +11002901 struct r10conf *conf = mddev->private;
NeilBrown9f2c9d12011-10-11 16:48:43 +11002902 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 struct bio *biolist = NULL, *bio;
2904 sector_t max_sector, nr_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 int i;
NeilBrown6cce3b22006-01-06 00:20:16 -08002906 int max_sync;
NeilBrown57dab0b2010-10-19 10:03:39 +11002907 sector_t sync_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 sector_t sectors_skipped = 0;
2909 int chunks_skipped = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +10002910 sector_t chunk_mask = conf->geo.chunk_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
2912 if (!conf->r10buf_pool)
2913 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07002914 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Martin Wilck7e83ccb2013-04-24 11:42:42 +10002916 /*
2917 * Allow skipping a full rebuild for incremental assembly
2918 * of a clean array, like RAID1 does.
2919 */
2920 if (mddev->bitmap == NULL &&
2921 mddev->recovery_cp == MaxSector &&
2922 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
2923 conf->fullsync == 0) {
2924 *skipped = 1;
2925 max_sector = mddev->dev_sectors;
2926 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) ||
2927 test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
2928 max_sector = mddev->resync_max_sectors;
2929 return max_sector - sector_nr;
2930 }
2931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 skipped:
Andre Noll58c0fed2009-03-31 14:33:13 +11002933 max_sector = mddev->dev_sectors;
NeilBrown3ea7daa2012-05-22 13:53:47 +10002934 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) ||
2935 test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 max_sector = mddev->resync_max_sectors;
2937 if (sector_nr >= max_sector) {
NeilBrown6cce3b22006-01-06 00:20:16 -08002938 /* If we aborted, we need to abort the
2939 * sync on the 'current' bitmap chucks (there can
2940 * be several when recovering multiple devices).
2941 * as we may have started syncing it but not finished.
2942 * We can find the current address in
2943 * mddev->curr_resync, but for recovery,
2944 * we need to convert that to several
2945 * virtual addresses.
2946 */
NeilBrown3ea7daa2012-05-22 13:53:47 +10002947 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
2948 end_reshape(conf);
2949 return 0;
2950 }
2951
NeilBrown6cce3b22006-01-06 00:20:16 -08002952 if (mddev->curr_resync < max_sector) { /* aborted */
2953 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery))
2954 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
2955 &sync_blocks, 1);
NeilBrown5cf00fc2012-05-21 09:28:20 +10002956 else for (i = 0; i < conf->geo.raid_disks; i++) {
NeilBrown6cce3b22006-01-06 00:20:16 -08002957 sector_t sect =
2958 raid10_find_virt(conf, mddev->curr_resync, i);
2959 bitmap_end_sync(mddev->bitmap, sect,
2960 &sync_blocks, 1);
2961 }
NeilBrown9ad1aef2011-12-23 10:17:55 +11002962 } else {
2963 /* completed sync */
2964 if ((!mddev->bitmap || conf->fullsync)
2965 && conf->have_replacement
2966 && test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
2967 /* Completed a full sync so the replacements
2968 * are now fully recovered.
2969 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10002970 for (i = 0; i < conf->geo.raid_disks; i++)
NeilBrown9ad1aef2011-12-23 10:17:55 +11002971 if (conf->mirrors[i].replacement)
2972 conf->mirrors[i].replacement
2973 ->recovery_offset
2974 = MaxSector;
2975 }
NeilBrown6cce3b22006-01-06 00:20:16 -08002976 conf->fullsync = 0;
NeilBrown9ad1aef2011-12-23 10:17:55 +11002977 }
NeilBrown6cce3b22006-01-06 00:20:16 -08002978 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 close_sync(conf);
NeilBrown57afd892005-06-21 17:17:13 -07002980 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 return sectors_skipped;
2982 }
NeilBrown3ea7daa2012-05-22 13:53:47 +10002983
2984 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
2985 return reshape_request(mddev, sector_nr, skipped);
2986
NeilBrown5cf00fc2012-05-21 09:28:20 +10002987 if (chunks_skipped >= conf->geo.raid_disks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 /* if there has been nothing to do on any drive,
2989 * then there is nothing to do at all..
2990 */
NeilBrown57afd892005-06-21 17:17:13 -07002991 *skipped = 1;
2992 return (max_sector - sector_nr) + sectors_skipped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 }
2994
NeilBrownc6207272008-02-06 01:39:52 -08002995 if (max_sector > mddev->resync_max)
2996 max_sector = mddev->resync_max; /* Don't do IO beyond here */
2997
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 /* make sure whole request will fit in a chunk - if chunks
2999 * are meaningful
3000 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10003001 if (conf->geo.near_copies < conf->geo.raid_disks &&
3002 max_sector > (sector_nr | chunk_mask))
3003 max_sector = (sector_nr | chunk_mask) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 /*
3005 * If there is non-resync activity waiting for us then
3006 * put in a delay to throttle resync.
3007 */
NeilBrown0a27ec92006-01-06 00:20:13 -08003008 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 msleep_interruptible(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010
3011 /* Again, very different code for resync and recovery.
3012 * Both must result in an r10bio with a list of bios that
3013 * have bi_end_io, bi_sector, bi_bdev set,
3014 * and bi_private set to the r10bio.
3015 * For recovery, we may actually create several r10bios
3016 * with 2 bios in each, that correspond to the bios in the main one.
3017 * In this case, the subordinate r10bios link back through a
3018 * borrowed master_bio pointer, and the counter in the master
3019 * includes a ref from each subordinate.
3020 */
3021 /* First, we decide what to do and set ->bi_end_io
3022 * To end_sync_read if we want to read, and
3023 * end_sync_write if we will want to write.
3024 */
3025
NeilBrown6cce3b22006-01-06 00:20:16 -08003026 max_sync = RESYNC_PAGES << (PAGE_SHIFT-9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 if (!test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
3028 /* recovery... the complicated one */
NeilBrowne875ece2011-07-28 11:39:24 +10003029 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 r10_bio = NULL;
3031
NeilBrown5cf00fc2012-05-21 09:28:20 +10003032 for (i = 0 ; i < conf->geo.raid_disks; i++) {
NeilBrownab9d47e2011-05-11 14:54:41 +10003033 int still_degraded;
NeilBrown9f2c9d12011-10-11 16:48:43 +11003034 struct r10bio *rb2;
NeilBrownab9d47e2011-05-11 14:54:41 +10003035 sector_t sect;
3036 int must_sync;
NeilBrowne875ece2011-07-28 11:39:24 +10003037 int any_working;
Jonathan Brassowdc280d982012-07-31 10:03:52 +10003038 struct raid10_info *mirror = &conf->mirrors[i];
NeilBrownab9d47e2011-05-11 14:54:41 +10003039
NeilBrown24afd802011-12-23 10:17:55 +11003040 if ((mirror->rdev == NULL ||
3041 test_bit(In_sync, &mirror->rdev->flags))
3042 &&
3043 (mirror->replacement == NULL ||
3044 test_bit(Faulty,
3045 &mirror->replacement->flags)))
NeilBrownab9d47e2011-05-11 14:54:41 +10003046 continue;
3047
3048 still_degraded = 0;
3049 /* want to reconstruct this device */
3050 rb2 = r10_bio;
3051 sect = raid10_find_virt(conf, sector_nr, i);
NeilBrownfc448a12012-07-03 10:37:30 +10003052 if (sect >= mddev->resync_max_sectors) {
3053 /* last stripe is not complete - don't
3054 * try to recover this sector.
3055 */
3056 continue;
3057 }
NeilBrown24afd802011-12-23 10:17:55 +11003058 /* Unless we are doing a full sync, or a replacement
3059 * we only need to recover the block if it is set in
3060 * the bitmap
NeilBrownab9d47e2011-05-11 14:54:41 +10003061 */
3062 must_sync = bitmap_start_sync(mddev->bitmap, sect,
3063 &sync_blocks, 1);
3064 if (sync_blocks < max_sync)
3065 max_sync = sync_blocks;
3066 if (!must_sync &&
NeilBrown24afd802011-12-23 10:17:55 +11003067 mirror->replacement == NULL &&
NeilBrownab9d47e2011-05-11 14:54:41 +10003068 !conf->fullsync) {
3069 /* yep, skip the sync_blocks here, but don't assume
3070 * that there will never be anything to do here
NeilBrown6cce3b22006-01-06 00:20:16 -08003071 */
NeilBrownab9d47e2011-05-11 14:54:41 +10003072 chunks_skipped = -1;
3073 continue;
3074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
NeilBrownab9d47e2011-05-11 14:54:41 +10003076 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
3077 raise_barrier(conf, rb2 != NULL);
3078 atomic_set(&r10_bio->remaining, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
NeilBrownab9d47e2011-05-11 14:54:41 +10003080 r10_bio->master_bio = (struct bio*)rb2;
3081 if (rb2)
3082 atomic_inc(&rb2->remaining);
3083 r10_bio->mddev = mddev;
3084 set_bit(R10BIO_IsRecover, &r10_bio->state);
3085 r10_bio->sector = sect;
NeilBrown6cce3b22006-01-06 00:20:16 -08003086
NeilBrownab9d47e2011-05-11 14:54:41 +10003087 raid10_find_phys(conf, r10_bio);
NeilBrown18055562009-05-07 12:48:10 +10003088
NeilBrownab9d47e2011-05-11 14:54:41 +10003089 /* Need to check if the array will still be
3090 * degraded
3091 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10003092 for (j = 0; j < conf->geo.raid_disks; j++)
NeilBrownab9d47e2011-05-11 14:54:41 +10003093 if (conf->mirrors[j].rdev == NULL ||
3094 test_bit(Faulty, &conf->mirrors[j].rdev->flags)) {
3095 still_degraded = 1;
NeilBrown87fc7672005-09-09 16:24:04 -07003096 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003098
3099 must_sync = bitmap_start_sync(mddev->bitmap, sect,
3100 &sync_blocks, still_degraded);
3101
NeilBrowne875ece2011-07-28 11:39:24 +10003102 any_working = 0;
NeilBrownab9d47e2011-05-11 14:54:41 +10003103 for (j=0; j<conf->copies;j++) {
NeilBrowne875ece2011-07-28 11:39:24 +10003104 int k;
NeilBrownab9d47e2011-05-11 14:54:41 +10003105 int d = r10_bio->devs[j].devnum;
NeilBrown5e570282011-07-28 11:39:25 +10003106 sector_t from_addr, to_addr;
NeilBrown3cb03002011-10-11 16:45:26 +11003107 struct md_rdev *rdev;
NeilBrown40c356c2011-07-28 11:39:24 +10003108 sector_t sector, first_bad;
3109 int bad_sectors;
NeilBrownab9d47e2011-05-11 14:54:41 +10003110 if (!conf->mirrors[d].rdev ||
3111 !test_bit(In_sync, &conf->mirrors[d].rdev->flags))
3112 continue;
3113 /* This is where we read from */
NeilBrowne875ece2011-07-28 11:39:24 +10003114 any_working = 1;
NeilBrown40c356c2011-07-28 11:39:24 +10003115 rdev = conf->mirrors[d].rdev;
3116 sector = r10_bio->devs[j].addr;
3117
3118 if (is_badblock(rdev, sector, max_sync,
3119 &first_bad, &bad_sectors)) {
3120 if (first_bad > sector)
3121 max_sync = first_bad - sector;
3122 else {
3123 bad_sectors -= (sector
3124 - first_bad);
3125 if (max_sync > bad_sectors)
3126 max_sync = bad_sectors;
3127 continue;
3128 }
3129 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003130 bio = r10_bio->devs[0].bio;
3131 bio->bi_next = biolist;
3132 biolist = bio;
3133 bio->bi_private = r10_bio;
3134 bio->bi_end_io = end_sync_read;
3135 bio->bi_rw = READ;
NeilBrown5e570282011-07-28 11:39:25 +10003136 from_addr = r10_bio->devs[j].addr;
NeilBrown24afd802011-12-23 10:17:55 +11003137 bio->bi_sector = from_addr + rdev->data_offset;
3138 bio->bi_bdev = rdev->bdev;
3139 atomic_inc(&rdev->nr_pending);
3140 /* and we write to 'i' (if not in_sync) */
NeilBrownab9d47e2011-05-11 14:54:41 +10003141
3142 for (k=0; k<conf->copies; k++)
3143 if (r10_bio->devs[k].devnum == i)
3144 break;
3145 BUG_ON(k == conf->copies);
NeilBrown5e570282011-07-28 11:39:25 +10003146 to_addr = r10_bio->devs[k].addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10003147 r10_bio->devs[0].devnum = d;
NeilBrown5e570282011-07-28 11:39:25 +10003148 r10_bio->devs[0].addr = from_addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10003149 r10_bio->devs[1].devnum = i;
NeilBrown5e570282011-07-28 11:39:25 +10003150 r10_bio->devs[1].addr = to_addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10003151
NeilBrown24afd802011-12-23 10:17:55 +11003152 rdev = mirror->rdev;
3153 if (!test_bit(In_sync, &rdev->flags)) {
3154 bio = r10_bio->devs[1].bio;
3155 bio->bi_next = biolist;
3156 biolist = bio;
3157 bio->bi_private = r10_bio;
3158 bio->bi_end_io = end_sync_write;
3159 bio->bi_rw = WRITE;
3160 bio->bi_sector = to_addr
3161 + rdev->data_offset;
3162 bio->bi_bdev = rdev->bdev;
3163 atomic_inc(&r10_bio->remaining);
3164 } else
3165 r10_bio->devs[1].bio->bi_end_io = NULL;
3166
3167 /* and maybe write to replacement */
3168 bio = r10_bio->devs[1].repl_bio;
3169 if (bio)
3170 bio->bi_end_io = NULL;
3171 rdev = mirror->replacement;
3172 /* Note: if rdev != NULL, then bio
3173 * cannot be NULL as r10buf_pool_alloc will
3174 * have allocated it.
3175 * So the second test here is pointless.
3176 * But it keeps semantic-checkers happy, and
3177 * this comment keeps human reviewers
3178 * happy.
3179 */
3180 if (rdev == NULL || bio == NULL ||
3181 test_bit(Faulty, &rdev->flags))
3182 break;
3183 bio->bi_next = biolist;
3184 biolist = bio;
3185 bio->bi_private = r10_bio;
3186 bio->bi_end_io = end_sync_write;
3187 bio->bi_rw = WRITE;
3188 bio->bi_sector = to_addr + rdev->data_offset;
3189 bio->bi_bdev = rdev->bdev;
3190 atomic_inc(&r10_bio->remaining);
NeilBrownab9d47e2011-05-11 14:54:41 +10003191 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003193 if (j == conf->copies) {
NeilBrowne875ece2011-07-28 11:39:24 +10003194 /* Cannot recover, so abort the recovery or
3195 * record a bad block */
NeilBrownab9d47e2011-05-11 14:54:41 +10003196 put_buf(r10_bio);
3197 if (rb2)
3198 atomic_dec(&rb2->remaining);
3199 r10_bio = rb2;
NeilBrowne875ece2011-07-28 11:39:24 +10003200 if (any_working) {
3201 /* problem is that there are bad blocks
3202 * on other device(s)
3203 */
3204 int k;
3205 for (k = 0; k < conf->copies; k++)
3206 if (r10_bio->devs[k].devnum == i)
3207 break;
NeilBrown24afd802011-12-23 10:17:55 +11003208 if (!test_bit(In_sync,
3209 &mirror->rdev->flags)
3210 && !rdev_set_badblocks(
3211 mirror->rdev,
3212 r10_bio->devs[k].addr,
3213 max_sync, 0))
3214 any_working = 0;
3215 if (mirror->replacement &&
3216 !rdev_set_badblocks(
3217 mirror->replacement,
NeilBrowne875ece2011-07-28 11:39:24 +10003218 r10_bio->devs[k].addr,
3219 max_sync, 0))
3220 any_working = 0;
3221 }
3222 if (!any_working) {
3223 if (!test_and_set_bit(MD_RECOVERY_INTR,
3224 &mddev->recovery))
3225 printk(KERN_INFO "md/raid10:%s: insufficient "
3226 "working devices for recovery.\n",
3227 mdname(mddev));
NeilBrown24afd802011-12-23 10:17:55 +11003228 mirror->recovery_disabled
NeilBrowne875ece2011-07-28 11:39:24 +10003229 = mddev->recovery_disabled;
3230 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003231 break;
3232 }
3233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 if (biolist == NULL) {
3235 while (r10_bio) {
NeilBrown9f2c9d12011-10-11 16:48:43 +11003236 struct r10bio *rb2 = r10_bio;
3237 r10_bio = (struct r10bio*) rb2->master_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 rb2->master_bio = NULL;
3239 put_buf(rb2);
3240 }
3241 goto giveup;
3242 }
3243 } else {
3244 /* resync. Schedule a read for every block at this virt offset */
3245 int count = 0;
NeilBrown6cce3b22006-01-06 00:20:16 -08003246
NeilBrown78200d42009-02-25 13:18:47 +11003247 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
3248
NeilBrown6cce3b22006-01-06 00:20:16 -08003249 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
3250 &sync_blocks, mddev->degraded) &&
NeilBrownab9d47e2011-05-11 14:54:41 +10003251 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED,
3252 &mddev->recovery)) {
NeilBrown6cce3b22006-01-06 00:20:16 -08003253 /* We can skip this block */
3254 *skipped = 1;
3255 return sync_blocks + sectors_skipped;
3256 }
3257 if (sync_blocks < max_sync)
3258 max_sync = sync_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
3260
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 r10_bio->mddev = mddev;
3262 atomic_set(&r10_bio->remaining, 0);
NeilBrown6cce3b22006-01-06 00:20:16 -08003263 raise_barrier(conf, 0);
3264 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265
3266 r10_bio->master_bio = NULL;
3267 r10_bio->sector = sector_nr;
3268 set_bit(R10BIO_IsSync, &r10_bio->state);
3269 raid10_find_phys(conf, r10_bio);
NeilBrown5cf00fc2012-05-21 09:28:20 +10003270 r10_bio->sectors = (sector_nr | chunk_mask) - sector_nr + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
NeilBrown5cf00fc2012-05-21 09:28:20 +10003272 for (i = 0; i < conf->copies; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 int d = r10_bio->devs[i].devnum;
NeilBrown40c356c2011-07-28 11:39:24 +10003274 sector_t first_bad, sector;
3275 int bad_sectors;
3276
NeilBrown9ad1aef2011-12-23 10:17:55 +11003277 if (r10_bio->devs[i].repl_bio)
3278 r10_bio->devs[i].repl_bio->bi_end_io = NULL;
3279
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 bio = r10_bio->devs[i].bio;
3281 bio->bi_end_io = NULL;
NeilBrownaf03b8e2007-06-16 10:16:06 -07003282 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 if (conf->mirrors[d].rdev == NULL ||
NeilBrownb2d444d2005-11-08 21:39:31 -08003284 test_bit(Faulty, &conf->mirrors[d].rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 continue;
NeilBrown40c356c2011-07-28 11:39:24 +10003286 sector = r10_bio->devs[i].addr;
3287 if (is_badblock(conf->mirrors[d].rdev,
3288 sector, max_sync,
3289 &first_bad, &bad_sectors)) {
3290 if (first_bad > sector)
3291 max_sync = first_bad - sector;
3292 else {
3293 bad_sectors -= (sector - first_bad);
3294 if (max_sync > bad_sectors)
Dan Carpenter91502f02012-10-11 14:20:58 +11003295 max_sync = bad_sectors;
NeilBrown40c356c2011-07-28 11:39:24 +10003296 continue;
3297 }
3298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
3300 atomic_inc(&r10_bio->remaining);
3301 bio->bi_next = biolist;
3302 biolist = bio;
3303 bio->bi_private = r10_bio;
3304 bio->bi_end_io = end_sync_read;
NeilBrown802ba062006-12-13 00:34:13 -08003305 bio->bi_rw = READ;
NeilBrown40c356c2011-07-28 11:39:24 +10003306 bio->bi_sector = sector +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 conf->mirrors[d].rdev->data_offset;
3308 bio->bi_bdev = conf->mirrors[d].rdev->bdev;
3309 count++;
NeilBrown9ad1aef2011-12-23 10:17:55 +11003310
3311 if (conf->mirrors[d].replacement == NULL ||
3312 test_bit(Faulty,
3313 &conf->mirrors[d].replacement->flags))
3314 continue;
3315
3316 /* Need to set up for writing to the replacement */
3317 bio = r10_bio->devs[i].repl_bio;
3318 clear_bit(BIO_UPTODATE, &bio->bi_flags);
3319
3320 sector = r10_bio->devs[i].addr;
3321 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
3322 bio->bi_next = biolist;
3323 biolist = bio;
3324 bio->bi_private = r10_bio;
3325 bio->bi_end_io = end_sync_write;
3326 bio->bi_rw = WRITE;
3327 bio->bi_sector = sector +
3328 conf->mirrors[d].replacement->data_offset;
3329 bio->bi_bdev = conf->mirrors[d].replacement->bdev;
3330 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 }
3332
3333 if (count < 2) {
3334 for (i=0; i<conf->copies; i++) {
3335 int d = r10_bio->devs[i].devnum;
3336 if (r10_bio->devs[i].bio->bi_end_io)
NeilBrownab9d47e2011-05-11 14:54:41 +10003337 rdev_dec_pending(conf->mirrors[d].rdev,
3338 mddev);
NeilBrown9ad1aef2011-12-23 10:17:55 +11003339 if (r10_bio->devs[i].repl_bio &&
3340 r10_bio->devs[i].repl_bio->bi_end_io)
3341 rdev_dec_pending(
3342 conf->mirrors[d].replacement,
3343 mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 }
3345 put_buf(r10_bio);
3346 biolist = NULL;
3347 goto giveup;
3348 }
3349 }
3350
3351 for (bio = biolist; bio ; bio=bio->bi_next) {
3352
3353 bio->bi_flags &= ~(BIO_POOL_MASK - 1);
3354 if (bio->bi_end_io)
3355 bio->bi_flags |= 1 << BIO_UPTODATE;
3356 bio->bi_vcnt = 0;
3357 bio->bi_idx = 0;
3358 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 bio->bi_size = 0;
3360 }
3361
3362 nr_sectors = 0;
NeilBrown6cce3b22006-01-06 00:20:16 -08003363 if (sector_nr + max_sync < max_sector)
3364 max_sector = sector_nr + max_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365 do {
3366 struct page *page;
3367 int len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 if (sector_nr + (len>>9) > max_sector)
3369 len = (max_sector - sector_nr) << 9;
3370 if (len == 0)
3371 break;
3372 for (bio= biolist ; bio ; bio=bio->bi_next) {
NeilBrownab9d47e2011-05-11 14:54:41 +10003373 struct bio *bio2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
NeilBrownab9d47e2011-05-11 14:54:41 +10003375 if (bio_add_page(bio, page, len, 0))
3376 continue;
3377
3378 /* stop here */
3379 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
3380 for (bio2 = biolist;
3381 bio2 && bio2 != bio;
3382 bio2 = bio2->bi_next) {
3383 /* remove last page from this bio */
3384 bio2->bi_vcnt--;
3385 bio2->bi_size -= len;
3386 bio2->bi_flags &= ~(1<< BIO_SEG_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003388 goto bio_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 }
3390 nr_sectors += len>>9;
3391 sector_nr += len>>9;
3392 } while (biolist->bi_vcnt < RESYNC_PAGES);
3393 bio_full:
3394 r10_bio->sectors = nr_sectors;
3395
3396 while (biolist) {
3397 bio = biolist;
3398 biolist = biolist->bi_next;
3399
3400 bio->bi_next = NULL;
3401 r10_bio = bio->bi_private;
3402 r10_bio->sectors = nr_sectors;
3403
3404 if (bio->bi_end_io == end_sync_read) {
3405 md_sync_acct(bio->bi_bdev, nr_sectors);
3406 generic_make_request(bio);
3407 }
3408 }
3409
NeilBrown57afd892005-06-21 17:17:13 -07003410 if (sectors_skipped)
3411 /* pretend they weren't skipped, it makes
3412 * no important difference in this case
3413 */
3414 md_done_sync(mddev, sectors_skipped, 1);
3415
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 return sectors_skipped + nr_sectors;
3417 giveup:
3418 /* There is nowhere to write, so all non-sync
NeilBrowne875ece2011-07-28 11:39:24 +10003419 * drives must be failed or in resync, all drives
3420 * have a bad block, so try the next chunk...
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 */
NeilBrown09b40682009-02-25 13:18:47 +11003422 if (sector_nr + max_sync < max_sector)
3423 max_sector = sector_nr + max_sync;
3424
3425 sectors_skipped += (max_sector - sector_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 chunks_skipped ++;
3427 sector_nr = max_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 goto skipped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429}
3430
Dan Williams80c3a6c2009-03-17 18:10:40 -07003431static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11003432raid10_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07003433{
3434 sector_t size;
NeilBrowne879a872011-10-11 16:49:02 +11003435 struct r10conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003436
3437 if (!raid_disks)
NeilBrown3ea7daa2012-05-22 13:53:47 +10003438 raid_disks = min(conf->geo.raid_disks,
3439 conf->prev.raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07003440 if (!sectors)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003441 sectors = conf->dev_sectors;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003442
NeilBrown5cf00fc2012-05-21 09:28:20 +10003443 size = sectors >> conf->geo.chunk_shift;
3444 sector_div(size, conf->geo.far_copies);
Dan Williams80c3a6c2009-03-17 18:10:40 -07003445 size = size * raid_disks;
NeilBrown5cf00fc2012-05-21 09:28:20 +10003446 sector_div(size, conf->geo.near_copies);
Dan Williams80c3a6c2009-03-17 18:10:40 -07003447
NeilBrown5cf00fc2012-05-21 09:28:20 +10003448 return size << conf->geo.chunk_shift;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003449}
3450
NeilBrown6508fdb2012-05-17 10:08:45 +10003451static void calc_sectors(struct r10conf *conf, sector_t size)
3452{
3453 /* Calculate the number of sectors-per-device that will
3454 * actually be used, and set conf->dev_sectors and
3455 * conf->stride
3456 */
3457
NeilBrown5cf00fc2012-05-21 09:28:20 +10003458 size = size >> conf->geo.chunk_shift;
3459 sector_div(size, conf->geo.far_copies);
3460 size = size * conf->geo.raid_disks;
3461 sector_div(size, conf->geo.near_copies);
NeilBrown6508fdb2012-05-17 10:08:45 +10003462 /* 'size' is now the number of chunks in the array */
3463 /* calculate "used chunks per device" */
3464 size = size * conf->copies;
3465
3466 /* We need to round up when dividing by raid_disks to
3467 * get the stride size.
3468 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10003469 size = DIV_ROUND_UP_SECTOR_T(size, conf->geo.raid_disks);
NeilBrown6508fdb2012-05-17 10:08:45 +10003470
NeilBrown5cf00fc2012-05-21 09:28:20 +10003471 conf->dev_sectors = size << conf->geo.chunk_shift;
NeilBrown6508fdb2012-05-17 10:08:45 +10003472
NeilBrown5cf00fc2012-05-21 09:28:20 +10003473 if (conf->geo.far_offset)
3474 conf->geo.stride = 1 << conf->geo.chunk_shift;
NeilBrown6508fdb2012-05-17 10:08:45 +10003475 else {
NeilBrown5cf00fc2012-05-21 09:28:20 +10003476 sector_div(size, conf->geo.far_copies);
3477 conf->geo.stride = size << conf->geo.chunk_shift;
NeilBrown6508fdb2012-05-17 10:08:45 +10003478 }
3479}
Trela, Maciejdab8b292010-03-08 16:02:45 +11003480
NeilBrowndeb200d2012-05-21 09:28:33 +10003481enum geo_type {geo_new, geo_old, geo_start};
3482static int setup_geo(struct geom *geo, struct mddev *mddev, enum geo_type new)
3483{
3484 int nc, fc, fo;
3485 int layout, chunk, disks;
3486 switch (new) {
3487 case geo_old:
3488 layout = mddev->layout;
3489 chunk = mddev->chunk_sectors;
3490 disks = mddev->raid_disks - mddev->delta_disks;
3491 break;
3492 case geo_new:
3493 layout = mddev->new_layout;
3494 chunk = mddev->new_chunk_sectors;
3495 disks = mddev->raid_disks;
3496 break;
3497 default: /* avoid 'may be unused' warnings */
3498 case geo_start: /* new when starting reshape - raid_disks not
3499 * updated yet. */
3500 layout = mddev->new_layout;
3501 chunk = mddev->new_chunk_sectors;
3502 disks = mddev->raid_disks + mddev->delta_disks;
3503 break;
3504 }
Jonathan Brassow475901a2013-02-21 13:28:10 +11003505 if (layout >> 18)
NeilBrowndeb200d2012-05-21 09:28:33 +10003506 return -1;
3507 if (chunk < (PAGE_SIZE >> 9) ||
3508 !is_power_of_2(chunk))
3509 return -2;
3510 nc = layout & 255;
3511 fc = (layout >> 8) & 255;
3512 fo = layout & (1<<16);
3513 geo->raid_disks = disks;
3514 geo->near_copies = nc;
3515 geo->far_copies = fc;
3516 geo->far_offset = fo;
Jonathan Brassow475901a2013-02-21 13:28:10 +11003517 geo->far_set_size = (layout & (1<<17)) ? disks / fc : disks;
NeilBrowndeb200d2012-05-21 09:28:33 +10003518 geo->chunk_mask = chunk - 1;
3519 geo->chunk_shift = ffz(~chunk);
3520 return nc*fc;
3521}
3522
NeilBrowne879a872011-10-11 16:49:02 +11003523static struct r10conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524{
NeilBrowne879a872011-10-11 16:49:02 +11003525 struct r10conf *conf = NULL;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003526 int err = -EINVAL;
NeilBrowndeb200d2012-05-21 09:28:33 +10003527 struct geom geo;
3528 int copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529
NeilBrowndeb200d2012-05-21 09:28:33 +10003530 copies = setup_geo(&geo, mddev, geo_new);
3531
3532 if (copies == -2) {
NeilBrown128595e2010-05-03 14:47:14 +10003533 printk(KERN_ERR "md/raid10:%s: chunk size must be "
3534 "at least PAGE_SIZE(%ld) and be a power of 2.\n",
3535 mdname(mddev), PAGE_SIZE);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003536 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 }
NeilBrown2604b702006-01-06 00:20:36 -08003538
NeilBrowndeb200d2012-05-21 09:28:33 +10003539 if (copies < 2 || copies > mddev->raid_disks) {
NeilBrown128595e2010-05-03 14:47:14 +10003540 printk(KERN_ERR "md/raid10:%s: unsupported raid10 layout: 0x%8x\n",
Maciej Trelaf73ea872010-06-16 11:46:29 +01003541 mdname(mddev), mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 goto out;
3543 }
Trela, Maciejdab8b292010-03-08 16:02:45 +11003544
3545 err = -ENOMEM;
NeilBrowne879a872011-10-11 16:49:02 +11003546 conf = kzalloc(sizeof(struct r10conf), GFP_KERNEL);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003547 if (!conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 goto out;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003549
NeilBrown3ea7daa2012-05-22 13:53:47 +10003550 /* FIXME calc properly */
Jonathan Brassowdc280d982012-07-31 10:03:52 +10003551 conf->mirrors = kzalloc(sizeof(struct raid10_info)*(mddev->raid_disks +
NeilBrown3ea7daa2012-05-22 13:53:47 +10003552 max(0,mddev->delta_disks)),
Trela, Maciejdab8b292010-03-08 16:02:45 +11003553 GFP_KERNEL);
3554 if (!conf->mirrors)
3555 goto out;
NeilBrown4443ae12006-01-06 00:20:28 -08003556
3557 conf->tmppage = alloc_page(GFP_KERNEL);
3558 if (!conf->tmppage)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003559 goto out;
3560
NeilBrowndeb200d2012-05-21 09:28:33 +10003561 conf->geo = geo;
3562 conf->copies = copies;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003563 conf->r10bio_pool = mempool_create(NR_RAID10_BIOS, r10bio_pool_alloc,
3564 r10bio_pool_free, conf);
3565 if (!conf->r10bio_pool)
3566 goto out;
3567
NeilBrown6508fdb2012-05-17 10:08:45 +10003568 calc_sectors(conf, mddev->dev_sectors);
NeilBrown3ea7daa2012-05-22 13:53:47 +10003569 if (mddev->reshape_position == MaxSector) {
3570 conf->prev = conf->geo;
3571 conf->reshape_progress = MaxSector;
3572 } else {
3573 if (setup_geo(&conf->prev, mddev, geo_old) != conf->copies) {
3574 err = -EINVAL;
3575 goto out;
3576 }
3577 conf->reshape_progress = mddev->reshape_position;
3578 if (conf->prev.far_offset)
3579 conf->prev.stride = 1 << conf->prev.chunk_shift;
3580 else
3581 /* far_copies must be 1 */
3582 conf->prev.stride = conf->dev_sectors;
3583 }
Neil Browne7e72bf2008-05-14 16:05:54 -07003584 spin_lock_init(&conf->device_lock);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003585 INIT_LIST_HEAD(&conf->retry_list);
3586
3587 spin_lock_init(&conf->resync_lock);
3588 init_waitqueue_head(&conf->wait_barrier);
3589
NeilBrown02326052012-07-03 15:56:52 +10003590 conf->thread = md_register_thread(raid10d, mddev, "raid10");
Trela, Maciejdab8b292010-03-08 16:02:45 +11003591 if (!conf->thread)
3592 goto out;
3593
Trela, Maciejdab8b292010-03-08 16:02:45 +11003594 conf->mddev = mddev;
3595 return conf;
3596
3597 out:
NeilBrown3ea7daa2012-05-22 13:53:47 +10003598 if (err == -ENOMEM)
3599 printk(KERN_ERR "md/raid10:%s: couldn't allocate memory.\n",
3600 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11003601 if (conf) {
3602 if (conf->r10bio_pool)
3603 mempool_destroy(conf->r10bio_pool);
3604 kfree(conf->mirrors);
3605 safe_put_page(conf->tmppage);
3606 kfree(conf);
3607 }
3608 return ERR_PTR(err);
3609}
3610
NeilBrownfd01b882011-10-11 16:47:53 +11003611static int run(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003612{
NeilBrowne879a872011-10-11 16:49:02 +11003613 struct r10conf *conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003614 int i, disk_idx, chunk_size;
Jonathan Brassowdc280d982012-07-31 10:03:52 +10003615 struct raid10_info *disk;
NeilBrown3cb03002011-10-11 16:45:26 +11003616 struct md_rdev *rdev;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003617 sector_t size;
NeilBrown3ea7daa2012-05-22 13:53:47 +10003618 sector_t min_offset_diff = 0;
3619 int first = 1;
Shaohua Li532a2a32012-10-11 13:30:52 +11003620 bool discard_supported = false;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003621
3622 if (mddev->private == NULL) {
3623 conf = setup_conf(mddev);
3624 if (IS_ERR(conf))
3625 return PTR_ERR(conf);
3626 mddev->private = conf;
3627 }
3628 conf = mddev->private;
3629 if (!conf)
3630 goto out;
3631
Trela, Maciejdab8b292010-03-08 16:02:45 +11003632 mddev->thread = conf->thread;
3633 conf->thread = NULL;
3634
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10003635 chunk_size = mddev->chunk_sectors << 9;
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003636 if (mddev->queue) {
Shaohua Li532a2a32012-10-11 13:30:52 +11003637 blk_queue_max_discard_sectors(mddev->queue,
3638 mddev->chunk_sectors);
Joe Lawrencec8dc9c62013-02-21 13:28:09 +11003639 blk_queue_max_write_same_sectors(mddev->queue,
3640 mddev->chunk_sectors);
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003641 blk_queue_io_min(mddev->queue, chunk_size);
3642 if (conf->geo.raid_disks % conf->geo.near_copies)
3643 blk_queue_io_opt(mddev->queue, chunk_size * conf->geo.raid_disks);
3644 else
3645 blk_queue_io_opt(mddev->queue, chunk_size *
3646 (conf->geo.raid_disks / conf->geo.near_copies));
3647 }
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10003648
NeilBrowndafb20f2012-03-19 12:46:39 +11003649 rdev_for_each(rdev, mddev) {
NeilBrown3ea7daa2012-05-22 13:53:47 +10003650 long long diff;
NeilBrownaba336b2012-05-31 15:39:11 +10003651 struct request_queue *q;
NeilBrown34b343c2011-07-28 11:31:47 +10003652
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 disk_idx = rdev->raid_disk;
NeilBrownf8c9e742012-05-21 09:28:33 +10003654 if (disk_idx < 0)
3655 continue;
3656 if (disk_idx >= conf->geo.raid_disks &&
3657 disk_idx >= conf->prev.raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 continue;
3659 disk = conf->mirrors + disk_idx;
3660
NeilBrown56a2559b2011-12-23 10:17:55 +11003661 if (test_bit(Replacement, &rdev->flags)) {
3662 if (disk->replacement)
3663 goto out_free_conf;
3664 disk->replacement = rdev;
3665 } else {
3666 if (disk->rdev)
3667 goto out_free_conf;
3668 disk->rdev = rdev;
3669 }
NeilBrownaba336b2012-05-31 15:39:11 +10003670 q = bdev_get_queue(rdev->bdev);
3671 if (q->merge_bvec_fn)
3672 mddev->merge_check_needed = 1;
NeilBrown3ea7daa2012-05-22 13:53:47 +10003673 diff = (rdev->new_data_offset - rdev->data_offset);
3674 if (!mddev->reshape_backwards)
3675 diff = -diff;
3676 if (diff < 0)
3677 diff = 0;
3678 if (first || diff < min_offset_diff)
3679 min_offset_diff = diff;
NeilBrown56a2559b2011-12-23 10:17:55 +11003680
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003681 if (mddev->gendisk)
3682 disk_stack_limits(mddev->gendisk, rdev->bdev,
3683 rdev->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684
3685 disk->head_position = 0;
Shaohua Li532a2a32012-10-11 13:30:52 +11003686
3687 if (blk_queue_discard(bdev_get_queue(rdev->bdev)))
3688 discard_supported = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 }
NeilBrown3ea7daa2012-05-22 13:53:47 +10003690
Jonathan Brassowed30be02012-10-31 11:42:30 +11003691 if (mddev->queue) {
3692 if (discard_supported)
3693 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
3694 mddev->queue);
3695 else
3696 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
3697 mddev->queue);
3698 }
NeilBrown6d508242005-09-09 16:24:03 -07003699 /* need to check that every block has at least one working mirror */
NeilBrown700c7212011-07-27 11:00:36 +10003700 if (!enough(conf, -1)) {
NeilBrown128595e2010-05-03 14:47:14 +10003701 printk(KERN_ERR "md/raid10:%s: not enough operational mirrors.\n",
NeilBrown6d508242005-09-09 16:24:03 -07003702 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 goto out_free_conf;
3704 }
3705
NeilBrown3ea7daa2012-05-22 13:53:47 +10003706 if (conf->reshape_progress != MaxSector) {
3707 /* must ensure that shape change is supported */
3708 if (conf->geo.far_copies != 1 &&
3709 conf->geo.far_offset == 0)
3710 goto out_free_conf;
3711 if (conf->prev.far_copies != 1 &&
3712 conf->geo.far_offset == 0)
3713 goto out_free_conf;
3714 }
3715
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716 mddev->degraded = 0;
NeilBrownf8c9e742012-05-21 09:28:33 +10003717 for (i = 0;
3718 i < conf->geo.raid_disks
3719 || i < conf->prev.raid_disks;
3720 i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
3722 disk = conf->mirrors + i;
3723
NeilBrown56a2559b2011-12-23 10:17:55 +11003724 if (!disk->rdev && disk->replacement) {
3725 /* The replacement is all we have - use it */
3726 disk->rdev = disk->replacement;
3727 disk->replacement = NULL;
3728 clear_bit(Replacement, &disk->rdev->flags);
3729 }
3730
NeilBrown5fd6c1d2006-06-26 00:27:40 -07003731 if (!disk->rdev ||
NeilBrown2e333e82006-10-21 10:24:07 -07003732 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 disk->head_position = 0;
3734 mddev->degraded++;
Neil Brown8c2e8702008-06-28 08:30:52 +10003735 if (disk->rdev)
3736 conf->fullsync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 }
NeilBrownd890fa22011-10-26 11:54:39 +11003738 disk->recovery_disabled = mddev->recovery_disabled - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 }
3740
Andre Noll8c6ac862009-06-18 08:48:06 +10003741 if (mddev->recovery_cp != MaxSector)
NeilBrown128595e2010-05-03 14:47:14 +10003742 printk(KERN_NOTICE "md/raid10:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10003743 " -- starting background reconstruction\n",
3744 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 printk(KERN_INFO
NeilBrown128595e2010-05-03 14:47:14 +10003746 "md/raid10:%s: active with %d out of %d devices\n",
NeilBrown5cf00fc2012-05-21 09:28:20 +10003747 mdname(mddev), conf->geo.raid_disks - mddev->degraded,
3748 conf->geo.raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 /*
3750 * Ok, everything is just fine now
3751 */
Trela, Maciejdab8b292010-03-08 16:02:45 +11003752 mddev->dev_sectors = conf->dev_sectors;
3753 size = raid10_size(mddev, 0, 0);
3754 md_set_array_sectors(mddev, size);
3755 mddev->resync_max_sectors = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003757 if (mddev->queue) {
NeilBrown5cf00fc2012-05-21 09:28:20 +10003758 int stripe = conf->geo.raid_disks *
Andre Noll9d8f0362009-06-18 08:45:01 +10003759 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003760 mddev->queue->backing_dev_info.congested_fn = raid10_congested;
3761 mddev->queue->backing_dev_info.congested_data = mddev;
3762
3763 /* Calculate max read-ahead size.
3764 * We need to readahead at least twice a whole stripe....
3765 * maybe...
3766 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10003767 stripe /= conf->geo.near_copies;
NeilBrown3ea7daa2012-05-22 13:53:47 +10003768 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
3769 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003770 blk_queue_merge_bvec(mddev->queue, raid10_mergeable_bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 }
3772
Martin K. Petersena91a2782011-03-17 11:11:05 +01003773
3774 if (md_integrity_register(mddev))
3775 goto out_free_conf;
3776
NeilBrown3ea7daa2012-05-22 13:53:47 +10003777 if (conf->reshape_progress != MaxSector) {
3778 unsigned long before_length, after_length;
3779
3780 before_length = ((1 << conf->prev.chunk_shift) *
3781 conf->prev.far_copies);
3782 after_length = ((1 << conf->geo.chunk_shift) *
3783 conf->geo.far_copies);
3784
3785 if (max(before_length, after_length) > min_offset_diff) {
3786 /* This cannot work */
3787 printk("md/raid10: offset difference not enough to continue reshape\n");
3788 goto out_free_conf;
3789 }
3790 conf->offset_diff = min_offset_diff;
3791
3792 conf->reshape_safe = conf->reshape_progress;
3793 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
3794 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
3795 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
3796 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
3797 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
3798 "reshape");
3799 }
3800
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 return 0;
3802
3803out_free_conf:
NeilBrown01f96c02011-09-21 15:30:20 +10003804 md_unregister_thread(&mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 if (conf->r10bio_pool)
3806 mempool_destroy(conf->r10bio_pool);
NeilBrown1345b1d2006-01-06 00:20:40 -08003807 safe_put_page(conf->tmppage);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07003808 kfree(conf->mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 kfree(conf);
3810 mddev->private = NULL;
3811out:
3812 return -EIO;
3813}
3814
NeilBrownfd01b882011-10-11 16:47:53 +11003815static int stop(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816{
NeilBrowne879a872011-10-11 16:49:02 +11003817 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
NeilBrown409c57f2009-03-31 14:39:39 +11003819 raise_barrier(conf, 0);
3820 lower_barrier(conf);
3821
NeilBrown01f96c02011-09-21 15:30:20 +10003822 md_unregister_thread(&mddev->thread);
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003823 if (mddev->queue)
3824 /* the unplug fn references 'conf'*/
3825 blk_sync_queue(mddev->queue);
3826
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 if (conf->r10bio_pool)
3828 mempool_destroy(conf->r10bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07003829 kfree(conf->mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 kfree(conf);
3831 mddev->private = NULL;
3832 return 0;
3833}
3834
NeilBrownfd01b882011-10-11 16:47:53 +11003835static void raid10_quiesce(struct mddev *mddev, int state)
NeilBrown6cce3b22006-01-06 00:20:16 -08003836{
NeilBrowne879a872011-10-11 16:49:02 +11003837 struct r10conf *conf = mddev->private;
NeilBrown6cce3b22006-01-06 00:20:16 -08003838
3839 switch(state) {
3840 case 1:
3841 raise_barrier(conf, 0);
3842 break;
3843 case 0:
3844 lower_barrier(conf);
3845 break;
3846 }
NeilBrown6cce3b22006-01-06 00:20:16 -08003847}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
NeilBrown006a09a2012-03-19 12:46:40 +11003849static int raid10_resize(struct mddev *mddev, sector_t sectors)
3850{
3851 /* Resize of 'far' arrays is not supported.
3852 * For 'near' and 'offset' arrays we can set the
3853 * number of sectors used to be an appropriate multiple
3854 * of the chunk size.
3855 * For 'offset', this is far_copies*chunksize.
3856 * For 'near' the multiplier is the LCM of
3857 * near_copies and raid_disks.
3858 * So if far_copies > 1 && !far_offset, fail.
3859 * Else find LCM(raid_disks, near_copy)*far_copies and
3860 * multiply by chunk_size. Then round to this number.
3861 * This is mostly done by raid10_size()
3862 */
3863 struct r10conf *conf = mddev->private;
3864 sector_t oldsize, size;
3865
NeilBrownf8c9e742012-05-21 09:28:33 +10003866 if (mddev->reshape_position != MaxSector)
3867 return -EBUSY;
3868
NeilBrown5cf00fc2012-05-21 09:28:20 +10003869 if (conf->geo.far_copies > 1 && !conf->geo.far_offset)
NeilBrown006a09a2012-03-19 12:46:40 +11003870 return -EINVAL;
3871
3872 oldsize = raid10_size(mddev, 0, 0);
3873 size = raid10_size(mddev, sectors, 0);
NeilBrowna4a61252012-05-22 13:55:27 +10003874 if (mddev->external_size &&
3875 mddev->array_sectors > size)
NeilBrown006a09a2012-03-19 12:46:40 +11003876 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10003877 if (mddev->bitmap) {
3878 int ret = bitmap_resize(mddev->bitmap, size, 0, 0);
3879 if (ret)
3880 return ret;
3881 }
3882 md_set_array_sectors(mddev, size);
NeilBrown006a09a2012-03-19 12:46:40 +11003883 set_capacity(mddev->gendisk, mddev->array_sectors);
3884 revalidate_disk(mddev->gendisk);
3885 if (sectors > mddev->dev_sectors &&
3886 mddev->recovery_cp > oldsize) {
3887 mddev->recovery_cp = oldsize;
3888 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
3889 }
NeilBrown6508fdb2012-05-17 10:08:45 +10003890 calc_sectors(conf, sectors);
3891 mddev->dev_sectors = conf->dev_sectors;
NeilBrown006a09a2012-03-19 12:46:40 +11003892 mddev->resync_max_sectors = size;
3893 return 0;
3894}
3895
NeilBrownfd01b882011-10-11 16:47:53 +11003896static void *raid10_takeover_raid0(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003897{
NeilBrown3cb03002011-10-11 16:45:26 +11003898 struct md_rdev *rdev;
NeilBrowne879a872011-10-11 16:49:02 +11003899 struct r10conf *conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003900
3901 if (mddev->degraded > 0) {
NeilBrown128595e2010-05-03 14:47:14 +10003902 printk(KERN_ERR "md/raid10:%s: Error: degraded raid0!\n",
3903 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11003904 return ERR_PTR(-EINVAL);
3905 }
3906
Trela, Maciejdab8b292010-03-08 16:02:45 +11003907 /* Set new parameters */
3908 mddev->new_level = 10;
3909 /* new layout: far_copies = 1, near_copies = 2 */
3910 mddev->new_layout = (1<<8) + 2;
3911 mddev->new_chunk_sectors = mddev->chunk_sectors;
3912 mddev->delta_disks = mddev->raid_disks;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003913 mddev->raid_disks *= 2;
3914 /* make sure it will be not marked as dirty */
3915 mddev->recovery_cp = MaxSector;
3916
3917 conf = setup_conf(mddev);
Krzysztof Wojcik02214dc2011-02-04 14:18:26 +01003918 if (!IS_ERR(conf)) {
NeilBrowndafb20f2012-03-19 12:46:39 +11003919 rdev_for_each(rdev, mddev)
NeilBrowne93f68a2010-06-15 09:36:03 +01003920 if (rdev->raid_disk >= 0)
3921 rdev->new_raid_disk = rdev->raid_disk * 2;
Krzysztof Wojcik02214dc2011-02-04 14:18:26 +01003922 conf->barrier = 1;
3923 }
3924
Trela, Maciejdab8b292010-03-08 16:02:45 +11003925 return conf;
3926}
3927
NeilBrownfd01b882011-10-11 16:47:53 +11003928static void *raid10_takeover(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003929{
NeilBrowne373ab12011-10-11 16:48:59 +11003930 struct r0conf *raid0_conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003931
3932 /* raid10 can take over:
3933 * raid0 - providing it has only two drives
3934 */
3935 if (mddev->level == 0) {
3936 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11003937 raid0_conf = mddev->private;
3938 if (raid0_conf->nr_strip_zones > 1) {
NeilBrown128595e2010-05-03 14:47:14 +10003939 printk(KERN_ERR "md/raid10:%s: cannot takeover raid 0"
3940 " with more than one zone.\n",
3941 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11003942 return ERR_PTR(-EINVAL);
3943 }
3944 return raid10_takeover_raid0(mddev);
3945 }
3946 return ERR_PTR(-EINVAL);
3947}
3948
NeilBrown3ea7daa2012-05-22 13:53:47 +10003949static int raid10_check_reshape(struct mddev *mddev)
3950{
3951 /* Called when there is a request to change
3952 * - layout (to ->new_layout)
3953 * - chunk size (to ->new_chunk_sectors)
3954 * - raid_disks (by delta_disks)
3955 * or when trying to restart a reshape that was ongoing.
3956 *
3957 * We need to validate the request and possibly allocate
3958 * space if that might be an issue later.
3959 *
3960 * Currently we reject any reshape of a 'far' mode array,
3961 * allow chunk size to change if new is generally acceptable,
3962 * allow raid_disks to increase, and allow
3963 * a switch between 'near' mode and 'offset' mode.
3964 */
3965 struct r10conf *conf = mddev->private;
3966 struct geom geo;
3967
3968 if (conf->geo.far_copies != 1 && !conf->geo.far_offset)
3969 return -EINVAL;
3970
3971 if (setup_geo(&geo, mddev, geo_start) != conf->copies)
3972 /* mustn't change number of copies */
3973 return -EINVAL;
3974 if (geo.far_copies > 1 && !geo.far_offset)
3975 /* Cannot switch to 'far' mode */
3976 return -EINVAL;
3977
3978 if (mddev->array_sectors & geo.chunk_mask)
3979 /* not factor of array size */
3980 return -EINVAL;
3981
NeilBrown3ea7daa2012-05-22 13:53:47 +10003982 if (!enough(conf, -1))
3983 return -EINVAL;
3984
3985 kfree(conf->mirrors_new);
3986 conf->mirrors_new = NULL;
3987 if (mddev->delta_disks > 0) {
3988 /* allocate new 'mirrors' list */
3989 conf->mirrors_new = kzalloc(
Jonathan Brassowdc280d982012-07-31 10:03:52 +10003990 sizeof(struct raid10_info)
NeilBrown3ea7daa2012-05-22 13:53:47 +10003991 *(mddev->raid_disks +
3992 mddev->delta_disks),
3993 GFP_KERNEL);
3994 if (!conf->mirrors_new)
3995 return -ENOMEM;
3996 }
3997 return 0;
3998}
3999
4000/*
4001 * Need to check if array has failed when deciding whether to:
4002 * - start an array
4003 * - remove non-faulty devices
4004 * - add a spare
4005 * - allow a reshape
4006 * This determination is simple when no reshape is happening.
4007 * However if there is a reshape, we need to carefully check
4008 * both the before and after sections.
4009 * This is because some failed devices may only affect one
4010 * of the two sections, and some non-in_sync devices may
4011 * be insync in the section most affected by failed devices.
4012 */
4013static int calc_degraded(struct r10conf *conf)
4014{
4015 int degraded, degraded2;
4016 int i;
4017
4018 rcu_read_lock();
4019 degraded = 0;
4020 /* 'prev' section first */
4021 for (i = 0; i < conf->prev.raid_disks; i++) {
4022 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
4023 if (!rdev || test_bit(Faulty, &rdev->flags))
4024 degraded++;
4025 else if (!test_bit(In_sync, &rdev->flags))
4026 /* When we can reduce the number of devices in
4027 * an array, this might not contribute to
4028 * 'degraded'. It does now.
4029 */
4030 degraded++;
4031 }
4032 rcu_read_unlock();
4033 if (conf->geo.raid_disks == conf->prev.raid_disks)
4034 return degraded;
4035 rcu_read_lock();
4036 degraded2 = 0;
4037 for (i = 0; i < conf->geo.raid_disks; i++) {
4038 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
4039 if (!rdev || test_bit(Faulty, &rdev->flags))
4040 degraded2++;
4041 else if (!test_bit(In_sync, &rdev->flags)) {
4042 /* If reshape is increasing the number of devices,
4043 * this section has already been recovered, so
4044 * it doesn't contribute to degraded.
4045 * else it does.
4046 */
4047 if (conf->geo.raid_disks <= conf->prev.raid_disks)
4048 degraded2++;
4049 }
4050 }
4051 rcu_read_unlock();
4052 if (degraded2 > degraded)
4053 return degraded2;
4054 return degraded;
4055}
4056
4057static int raid10_start_reshape(struct mddev *mddev)
4058{
4059 /* A 'reshape' has been requested. This commits
4060 * the various 'new' fields and sets MD_RECOVER_RESHAPE
4061 * This also checks if there are enough spares and adds them
4062 * to the array.
4063 * We currently require enough spares to make the final
4064 * array non-degraded. We also require that the difference
4065 * between old and new data_offset - on each device - is
4066 * enough that we never risk over-writing.
4067 */
4068
4069 unsigned long before_length, after_length;
4070 sector_t min_offset_diff = 0;
4071 int first = 1;
4072 struct geom new;
4073 struct r10conf *conf = mddev->private;
4074 struct md_rdev *rdev;
4075 int spares = 0;
NeilBrownbb63a702012-05-22 13:55:28 +10004076 int ret;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004077
4078 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
4079 return -EBUSY;
4080
4081 if (setup_geo(&new, mddev, geo_start) != conf->copies)
4082 return -EINVAL;
4083
4084 before_length = ((1 << conf->prev.chunk_shift) *
4085 conf->prev.far_copies);
4086 after_length = ((1 << conf->geo.chunk_shift) *
4087 conf->geo.far_copies);
4088
4089 rdev_for_each(rdev, mddev) {
4090 if (!test_bit(In_sync, &rdev->flags)
4091 && !test_bit(Faulty, &rdev->flags))
4092 spares++;
4093 if (rdev->raid_disk >= 0) {
4094 long long diff = (rdev->new_data_offset
4095 - rdev->data_offset);
4096 if (!mddev->reshape_backwards)
4097 diff = -diff;
4098 if (diff < 0)
4099 diff = 0;
4100 if (first || diff < min_offset_diff)
4101 min_offset_diff = diff;
4102 }
4103 }
4104
4105 if (max(before_length, after_length) > min_offset_diff)
4106 return -EINVAL;
4107
4108 if (spares < mddev->delta_disks)
4109 return -EINVAL;
4110
4111 conf->offset_diff = min_offset_diff;
4112 spin_lock_irq(&conf->device_lock);
4113 if (conf->mirrors_new) {
4114 memcpy(conf->mirrors_new, conf->mirrors,
Jonathan Brassowdc280d982012-07-31 10:03:52 +10004115 sizeof(struct raid10_info)*conf->prev.raid_disks);
NeilBrown3ea7daa2012-05-22 13:53:47 +10004116 smp_mb();
4117 kfree(conf->mirrors_old); /* FIXME and elsewhere */
4118 conf->mirrors_old = conf->mirrors;
4119 conf->mirrors = conf->mirrors_new;
4120 conf->mirrors_new = NULL;
4121 }
4122 setup_geo(&conf->geo, mddev, geo_start);
4123 smp_mb();
4124 if (mddev->reshape_backwards) {
4125 sector_t size = raid10_size(mddev, 0, 0);
4126 if (size < mddev->array_sectors) {
4127 spin_unlock_irq(&conf->device_lock);
4128 printk(KERN_ERR "md/raid10:%s: array size must be reduce before number of disks\n",
4129 mdname(mddev));
4130 return -EINVAL;
4131 }
4132 mddev->resync_max_sectors = size;
4133 conf->reshape_progress = size;
4134 } else
4135 conf->reshape_progress = 0;
4136 spin_unlock_irq(&conf->device_lock);
4137
NeilBrownbb63a702012-05-22 13:55:28 +10004138 if (mddev->delta_disks && mddev->bitmap) {
4139 ret = bitmap_resize(mddev->bitmap,
4140 raid10_size(mddev, 0,
4141 conf->geo.raid_disks),
4142 0, 0);
4143 if (ret)
4144 goto abort;
4145 }
NeilBrown3ea7daa2012-05-22 13:53:47 +10004146 if (mddev->delta_disks > 0) {
4147 rdev_for_each(rdev, mddev)
4148 if (rdev->raid_disk < 0 &&
4149 !test_bit(Faulty, &rdev->flags)) {
4150 if (raid10_add_disk(mddev, rdev) == 0) {
4151 if (rdev->raid_disk >=
4152 conf->prev.raid_disks)
4153 set_bit(In_sync, &rdev->flags);
4154 else
4155 rdev->recovery_offset = 0;
4156
4157 if (sysfs_link_rdev(mddev, rdev))
4158 /* Failure here is OK */;
4159 }
4160 } else if (rdev->raid_disk >= conf->prev.raid_disks
4161 && !test_bit(Faulty, &rdev->flags)) {
4162 /* This is a spare that was manually added */
4163 set_bit(In_sync, &rdev->flags);
4164 }
4165 }
4166 /* When a reshape changes the number of devices,
4167 * ->degraded is measured against the larger of the
4168 * pre and post numbers.
4169 */
4170 spin_lock_irq(&conf->device_lock);
4171 mddev->degraded = calc_degraded(conf);
4172 spin_unlock_irq(&conf->device_lock);
4173 mddev->raid_disks = conf->geo.raid_disks;
4174 mddev->reshape_position = conf->reshape_progress;
4175 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4176
4177 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
4178 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
4179 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
4180 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
4181
4182 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
4183 "reshape");
4184 if (!mddev->sync_thread) {
NeilBrownbb63a702012-05-22 13:55:28 +10004185 ret = -EAGAIN;
4186 goto abort;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004187 }
4188 conf->reshape_checkpoint = jiffies;
4189 md_wakeup_thread(mddev->sync_thread);
4190 md_new_event(mddev);
4191 return 0;
NeilBrownbb63a702012-05-22 13:55:28 +10004192
4193abort:
4194 mddev->recovery = 0;
4195 spin_lock_irq(&conf->device_lock);
4196 conf->geo = conf->prev;
4197 mddev->raid_disks = conf->geo.raid_disks;
4198 rdev_for_each(rdev, mddev)
4199 rdev->new_data_offset = rdev->data_offset;
4200 smp_wmb();
4201 conf->reshape_progress = MaxSector;
4202 mddev->reshape_position = MaxSector;
4203 spin_unlock_irq(&conf->device_lock);
4204 return ret;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004205}
4206
4207/* Calculate the last device-address that could contain
4208 * any block from the chunk that includes the array-address 's'
4209 * and report the next address.
4210 * i.e. the address returned will be chunk-aligned and after
4211 * any data that is in the chunk containing 's'.
4212 */
4213static sector_t last_dev_address(sector_t s, struct geom *geo)
4214{
4215 s = (s | geo->chunk_mask) + 1;
4216 s >>= geo->chunk_shift;
4217 s *= geo->near_copies;
4218 s = DIV_ROUND_UP_SECTOR_T(s, geo->raid_disks);
4219 s *= geo->far_copies;
4220 s <<= geo->chunk_shift;
4221 return s;
4222}
4223
4224/* Calculate the first device-address that could contain
4225 * any block from the chunk that includes the array-address 's'.
4226 * This too will be the start of a chunk
4227 */
4228static sector_t first_dev_address(sector_t s, struct geom *geo)
4229{
4230 s >>= geo->chunk_shift;
4231 s *= geo->near_copies;
4232 sector_div(s, geo->raid_disks);
4233 s *= geo->far_copies;
4234 s <<= geo->chunk_shift;
4235 return s;
4236}
4237
4238static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr,
4239 int *skipped)
4240{
4241 /* We simply copy at most one chunk (smallest of old and new)
4242 * at a time, possibly less if that exceeds RESYNC_PAGES,
4243 * or we hit a bad block or something.
4244 * This might mean we pause for normal IO in the middle of
4245 * a chunk, but that is not a problem was mddev->reshape_position
4246 * can record any location.
4247 *
4248 * If we will want to write to a location that isn't
4249 * yet recorded as 'safe' (i.e. in metadata on disk) then
4250 * we need to flush all reshape requests and update the metadata.
4251 *
4252 * When reshaping forwards (e.g. to more devices), we interpret
4253 * 'safe' as the earliest block which might not have been copied
4254 * down yet. We divide this by previous stripe size and multiply
4255 * by previous stripe length to get lowest device offset that we
4256 * cannot write to yet.
4257 * We interpret 'sector_nr' as an address that we want to write to.
4258 * From this we use last_device_address() to find where we might
4259 * write to, and first_device_address on the 'safe' position.
4260 * If this 'next' write position is after the 'safe' position,
4261 * we must update the metadata to increase the 'safe' position.
4262 *
4263 * When reshaping backwards, we round in the opposite direction
4264 * and perform the reverse test: next write position must not be
4265 * less than current safe position.
4266 *
4267 * In all this the minimum difference in data offsets
4268 * (conf->offset_diff - always positive) allows a bit of slack,
4269 * so next can be after 'safe', but not by more than offset_disk
4270 *
4271 * We need to prepare all the bios here before we start any IO
4272 * to ensure the size we choose is acceptable to all devices.
4273 * The means one for each copy for write-out and an extra one for
4274 * read-in.
4275 * We store the read-in bio in ->master_bio and the others in
4276 * ->devs[x].bio and ->devs[x].repl_bio.
4277 */
4278 struct r10conf *conf = mddev->private;
4279 struct r10bio *r10_bio;
4280 sector_t next, safe, last;
4281 int max_sectors;
4282 int nr_sectors;
4283 int s;
4284 struct md_rdev *rdev;
4285 int need_flush = 0;
4286 struct bio *blist;
4287 struct bio *bio, *read_bio;
4288 int sectors_done = 0;
4289
4290 if (sector_nr == 0) {
4291 /* If restarting in the middle, skip the initial sectors */
4292 if (mddev->reshape_backwards &&
4293 conf->reshape_progress < raid10_size(mddev, 0, 0)) {
4294 sector_nr = (raid10_size(mddev, 0, 0)
4295 - conf->reshape_progress);
4296 } else if (!mddev->reshape_backwards &&
4297 conf->reshape_progress > 0)
4298 sector_nr = conf->reshape_progress;
4299 if (sector_nr) {
4300 mddev->curr_resync_completed = sector_nr;
4301 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
4302 *skipped = 1;
4303 return sector_nr;
4304 }
4305 }
4306
4307 /* We don't use sector_nr to track where we are up to
4308 * as that doesn't work well for ->reshape_backwards.
4309 * So just use ->reshape_progress.
4310 */
4311 if (mddev->reshape_backwards) {
4312 /* 'next' is the earliest device address that we might
4313 * write to for this chunk in the new layout
4314 */
4315 next = first_dev_address(conf->reshape_progress - 1,
4316 &conf->geo);
4317
4318 /* 'safe' is the last device address that we might read from
4319 * in the old layout after a restart
4320 */
4321 safe = last_dev_address(conf->reshape_safe - 1,
4322 &conf->prev);
4323
4324 if (next + conf->offset_diff < safe)
4325 need_flush = 1;
4326
4327 last = conf->reshape_progress - 1;
4328 sector_nr = last & ~(sector_t)(conf->geo.chunk_mask
4329 & conf->prev.chunk_mask);
4330 if (sector_nr + RESYNC_BLOCK_SIZE/512 < last)
4331 sector_nr = last + 1 - RESYNC_BLOCK_SIZE/512;
4332 } else {
4333 /* 'next' is after the last device address that we
4334 * might write to for this chunk in the new layout
4335 */
4336 next = last_dev_address(conf->reshape_progress, &conf->geo);
4337
4338 /* 'safe' is the earliest device address that we might
4339 * read from in the old layout after a restart
4340 */
4341 safe = first_dev_address(conf->reshape_safe, &conf->prev);
4342
4343 /* Need to update metadata if 'next' might be beyond 'safe'
4344 * as that would possibly corrupt data
4345 */
4346 if (next > safe + conf->offset_diff)
4347 need_flush = 1;
4348
4349 sector_nr = conf->reshape_progress;
4350 last = sector_nr | (conf->geo.chunk_mask
4351 & conf->prev.chunk_mask);
4352
4353 if (sector_nr + RESYNC_BLOCK_SIZE/512 <= last)
4354 last = sector_nr + RESYNC_BLOCK_SIZE/512 - 1;
4355 }
4356
4357 if (need_flush ||
4358 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
4359 /* Need to update reshape_position in metadata */
4360 wait_barrier(conf);
4361 mddev->reshape_position = conf->reshape_progress;
4362 if (mddev->reshape_backwards)
4363 mddev->curr_resync_completed = raid10_size(mddev, 0, 0)
4364 - conf->reshape_progress;
4365 else
4366 mddev->curr_resync_completed = conf->reshape_progress;
4367 conf->reshape_checkpoint = jiffies;
4368 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4369 md_wakeup_thread(mddev->thread);
4370 wait_event(mddev->sb_wait, mddev->flags == 0 ||
4371 kthread_should_stop());
4372 conf->reshape_safe = mddev->reshape_position;
4373 allow_barrier(conf);
4374 }
4375
4376read_more:
4377 /* Now schedule reads for blocks from sector_nr to last */
4378 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
4379 raise_barrier(conf, sectors_done != 0);
4380 atomic_set(&r10_bio->remaining, 0);
4381 r10_bio->mddev = mddev;
4382 r10_bio->sector = sector_nr;
4383 set_bit(R10BIO_IsReshape, &r10_bio->state);
4384 r10_bio->sectors = last - sector_nr + 1;
4385 rdev = read_balance(conf, r10_bio, &max_sectors);
4386 BUG_ON(!test_bit(R10BIO_Previous, &r10_bio->state));
4387
4388 if (!rdev) {
4389 /* Cannot read from here, so need to record bad blocks
4390 * on all the target devices.
4391 */
4392 // FIXME
4393 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
4394 return sectors_done;
4395 }
4396
4397 read_bio = bio_alloc_mddev(GFP_KERNEL, RESYNC_PAGES, mddev);
4398
4399 read_bio->bi_bdev = rdev->bdev;
4400 read_bio->bi_sector = (r10_bio->devs[r10_bio->read_slot].addr
4401 + rdev->data_offset);
4402 read_bio->bi_private = r10_bio;
4403 read_bio->bi_end_io = end_sync_read;
4404 read_bio->bi_rw = READ;
4405 read_bio->bi_flags &= ~(BIO_POOL_MASK - 1);
4406 read_bio->bi_flags |= 1 << BIO_UPTODATE;
4407 read_bio->bi_vcnt = 0;
4408 read_bio->bi_idx = 0;
4409 read_bio->bi_size = 0;
4410 r10_bio->master_bio = read_bio;
4411 r10_bio->read_slot = r10_bio->devs[r10_bio->read_slot].devnum;
4412
4413 /* Now find the locations in the new layout */
4414 __raid10_find_phys(&conf->geo, r10_bio);
4415
4416 blist = read_bio;
4417 read_bio->bi_next = NULL;
4418
4419 for (s = 0; s < conf->copies*2; s++) {
4420 struct bio *b;
4421 int d = r10_bio->devs[s/2].devnum;
4422 struct md_rdev *rdev2;
4423 if (s&1) {
4424 rdev2 = conf->mirrors[d].replacement;
4425 b = r10_bio->devs[s/2].repl_bio;
4426 } else {
4427 rdev2 = conf->mirrors[d].rdev;
4428 b = r10_bio->devs[s/2].bio;
4429 }
4430 if (!rdev2 || test_bit(Faulty, &rdev2->flags))
4431 continue;
4432 b->bi_bdev = rdev2->bdev;
4433 b->bi_sector = r10_bio->devs[s/2].addr + rdev2->new_data_offset;
4434 b->bi_private = r10_bio;
4435 b->bi_end_io = end_reshape_write;
4436 b->bi_rw = WRITE;
4437 b->bi_flags &= ~(BIO_POOL_MASK - 1);
4438 b->bi_flags |= 1 << BIO_UPTODATE;
4439 b->bi_next = blist;
4440 b->bi_vcnt = 0;
4441 b->bi_idx = 0;
4442 b->bi_size = 0;
4443 blist = b;
4444 }
4445
4446 /* Now add as many pages as possible to all of these bios. */
4447
4448 nr_sectors = 0;
4449 for (s = 0 ; s < max_sectors; s += PAGE_SIZE >> 9) {
4450 struct page *page = r10_bio->devs[0].bio->bi_io_vec[s/(PAGE_SIZE>>9)].bv_page;
4451 int len = (max_sectors - s) << 9;
4452 if (len > PAGE_SIZE)
4453 len = PAGE_SIZE;
4454 for (bio = blist; bio ; bio = bio->bi_next) {
4455 struct bio *bio2;
4456 if (bio_add_page(bio, page, len, 0))
4457 continue;
4458
4459 /* Didn't fit, must stop */
4460 for (bio2 = blist;
4461 bio2 && bio2 != bio;
4462 bio2 = bio2->bi_next) {
4463 /* Remove last page from this bio */
4464 bio2->bi_vcnt--;
4465 bio2->bi_size -= len;
4466 bio2->bi_flags &= ~(1<<BIO_SEG_VALID);
4467 }
4468 goto bio_full;
4469 }
4470 sector_nr += len >> 9;
4471 nr_sectors += len >> 9;
4472 }
4473bio_full:
4474 r10_bio->sectors = nr_sectors;
4475
4476 /* Now submit the read */
4477 md_sync_acct(read_bio->bi_bdev, r10_bio->sectors);
4478 atomic_inc(&r10_bio->remaining);
4479 read_bio->bi_next = NULL;
4480 generic_make_request(read_bio);
4481 sector_nr += nr_sectors;
4482 sectors_done += nr_sectors;
4483 if (sector_nr <= last)
4484 goto read_more;
4485
4486 /* Now that we have done the whole section we can
4487 * update reshape_progress
4488 */
4489 if (mddev->reshape_backwards)
4490 conf->reshape_progress -= sectors_done;
4491 else
4492 conf->reshape_progress += sectors_done;
4493
4494 return sectors_done;
4495}
4496
4497static void end_reshape_request(struct r10bio *r10_bio);
4498static int handle_reshape_read_error(struct mddev *mddev,
4499 struct r10bio *r10_bio);
4500static void reshape_request_write(struct mddev *mddev, struct r10bio *r10_bio)
4501{
4502 /* Reshape read completed. Hopefully we have a block
4503 * to write out.
4504 * If we got a read error then we do sync 1-page reads from
4505 * elsewhere until we find the data - or give up.
4506 */
4507 struct r10conf *conf = mddev->private;
4508 int s;
4509
4510 if (!test_bit(R10BIO_Uptodate, &r10_bio->state))
4511 if (handle_reshape_read_error(mddev, r10_bio) < 0) {
4512 /* Reshape has been aborted */
4513 md_done_sync(mddev, r10_bio->sectors, 0);
4514 return;
4515 }
4516
4517 /* We definitely have the data in the pages, schedule the
4518 * writes.
4519 */
4520 atomic_set(&r10_bio->remaining, 1);
4521 for (s = 0; s < conf->copies*2; s++) {
4522 struct bio *b;
4523 int d = r10_bio->devs[s/2].devnum;
4524 struct md_rdev *rdev;
4525 if (s&1) {
4526 rdev = conf->mirrors[d].replacement;
4527 b = r10_bio->devs[s/2].repl_bio;
4528 } else {
4529 rdev = conf->mirrors[d].rdev;
4530 b = r10_bio->devs[s/2].bio;
4531 }
4532 if (!rdev || test_bit(Faulty, &rdev->flags))
4533 continue;
4534 atomic_inc(&rdev->nr_pending);
4535 md_sync_acct(b->bi_bdev, r10_bio->sectors);
4536 atomic_inc(&r10_bio->remaining);
4537 b->bi_next = NULL;
4538 generic_make_request(b);
4539 }
4540 end_reshape_request(r10_bio);
4541}
4542
4543static void end_reshape(struct r10conf *conf)
4544{
4545 if (test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery))
4546 return;
4547
4548 spin_lock_irq(&conf->device_lock);
4549 conf->prev = conf->geo;
4550 md_finish_reshape(conf->mddev);
4551 smp_wmb();
4552 conf->reshape_progress = MaxSector;
4553 spin_unlock_irq(&conf->device_lock);
4554
4555 /* read-ahead size must cover two whole stripes, which is
4556 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
4557 */
4558 if (conf->mddev->queue) {
4559 int stripe = conf->geo.raid_disks *
4560 ((conf->mddev->chunk_sectors << 9) / PAGE_SIZE);
4561 stripe /= conf->geo.near_copies;
4562 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
4563 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
4564 }
4565 conf->fullsync = 0;
4566}
4567
4568
4569static int handle_reshape_read_error(struct mddev *mddev,
4570 struct r10bio *r10_bio)
4571{
4572 /* Use sync reads to get the blocks from somewhere else */
4573 int sectors = r10_bio->sectors;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004574 struct r10conf *conf = mddev->private;
NeilBrowne0ee7782012-08-18 09:51:42 +10004575 struct {
4576 struct r10bio r10_bio;
4577 struct r10dev devs[conf->copies];
4578 } on_stack;
4579 struct r10bio *r10b = &on_stack.r10_bio;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004580 int slot = 0;
4581 int idx = 0;
4582 struct bio_vec *bvec = r10_bio->master_bio->bi_io_vec;
4583
NeilBrowne0ee7782012-08-18 09:51:42 +10004584 r10b->sector = r10_bio->sector;
4585 __raid10_find_phys(&conf->prev, r10b);
NeilBrown3ea7daa2012-05-22 13:53:47 +10004586
4587 while (sectors) {
4588 int s = sectors;
4589 int success = 0;
4590 int first_slot = slot;
4591
4592 if (s > (PAGE_SIZE >> 9))
4593 s = PAGE_SIZE >> 9;
4594
4595 while (!success) {
NeilBrowne0ee7782012-08-18 09:51:42 +10004596 int d = r10b->devs[slot].devnum;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004597 struct md_rdev *rdev = conf->mirrors[d].rdev;
4598 sector_t addr;
4599 if (rdev == NULL ||
4600 test_bit(Faulty, &rdev->flags) ||
4601 !test_bit(In_sync, &rdev->flags))
4602 goto failed;
4603
NeilBrowne0ee7782012-08-18 09:51:42 +10004604 addr = r10b->devs[slot].addr + idx * PAGE_SIZE;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004605 success = sync_page_io(rdev,
4606 addr,
4607 s << 9,
4608 bvec[idx].bv_page,
4609 READ, false);
4610 if (success)
4611 break;
4612 failed:
4613 slot++;
4614 if (slot >= conf->copies)
4615 slot = 0;
4616 if (slot == first_slot)
4617 break;
4618 }
4619 if (!success) {
4620 /* couldn't read this block, must give up */
4621 set_bit(MD_RECOVERY_INTR,
4622 &mddev->recovery);
4623 return -EIO;
4624 }
4625 sectors -= s;
4626 idx++;
4627 }
4628 return 0;
4629}
4630
4631static void end_reshape_write(struct bio *bio, int error)
4632{
4633 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
4634 struct r10bio *r10_bio = bio->bi_private;
4635 struct mddev *mddev = r10_bio->mddev;
4636 struct r10conf *conf = mddev->private;
4637 int d;
4638 int slot;
4639 int repl;
4640 struct md_rdev *rdev = NULL;
4641
4642 d = find_bio_disk(conf, r10_bio, bio, &slot, &repl);
4643 if (repl)
4644 rdev = conf->mirrors[d].replacement;
4645 if (!rdev) {
4646 smp_mb();
4647 rdev = conf->mirrors[d].rdev;
4648 }
4649
4650 if (!uptodate) {
4651 /* FIXME should record badblock */
4652 md_error(mddev, rdev);
4653 }
4654
4655 rdev_dec_pending(rdev, mddev);
4656 end_reshape_request(r10_bio);
4657}
4658
4659static void end_reshape_request(struct r10bio *r10_bio)
4660{
4661 if (!atomic_dec_and_test(&r10_bio->remaining))
4662 return;
4663 md_done_sync(r10_bio->mddev, r10_bio->sectors, 1);
4664 bio_put(r10_bio->master_bio);
4665 put_buf(r10_bio);
4666}
4667
4668static void raid10_finish_reshape(struct mddev *mddev)
4669{
4670 struct r10conf *conf = mddev->private;
4671
4672 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
4673 return;
4674
4675 if (mddev->delta_disks > 0) {
4676 sector_t size = raid10_size(mddev, 0, 0);
4677 md_set_array_sectors(mddev, size);
4678 if (mddev->recovery_cp > mddev->resync_max_sectors) {
4679 mddev->recovery_cp = mddev->resync_max_sectors;
4680 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
4681 }
4682 mddev->resync_max_sectors = size;
4683 set_capacity(mddev->gendisk, mddev->array_sectors);
4684 revalidate_disk(mddev->gendisk);
NeilBrown63aced62012-05-22 13:55:33 +10004685 } else {
4686 int d;
4687 for (d = conf->geo.raid_disks ;
4688 d < conf->geo.raid_disks - mddev->delta_disks;
4689 d++) {
4690 struct md_rdev *rdev = conf->mirrors[d].rdev;
4691 if (rdev)
4692 clear_bit(In_sync, &rdev->flags);
4693 rdev = conf->mirrors[d].replacement;
4694 if (rdev)
4695 clear_bit(In_sync, &rdev->flags);
4696 }
NeilBrown3ea7daa2012-05-22 13:53:47 +10004697 }
4698 mddev->layout = mddev->new_layout;
4699 mddev->chunk_sectors = 1 << conf->geo.chunk_shift;
4700 mddev->reshape_position = MaxSector;
4701 mddev->delta_disks = 0;
4702 mddev->reshape_backwards = 0;
4703}
4704
NeilBrown84fc4b52011-10-11 16:49:58 +11004705static struct md_personality raid10_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706{
4707 .name = "raid10",
NeilBrown2604b702006-01-06 00:20:36 -08004708 .level = 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 .owner = THIS_MODULE,
4710 .make_request = make_request,
4711 .run = run,
4712 .stop = stop,
4713 .status = status,
4714 .error_handler = error,
4715 .hot_add_disk = raid10_add_disk,
4716 .hot_remove_disk= raid10_remove_disk,
4717 .spare_active = raid10_spare_active,
4718 .sync_request = sync_request,
NeilBrown6cce3b22006-01-06 00:20:16 -08004719 .quiesce = raid10_quiesce,
Dan Williams80c3a6c2009-03-17 18:10:40 -07004720 .size = raid10_size,
NeilBrown006a09a2012-03-19 12:46:40 +11004721 .resize = raid10_resize,
Trela, Maciejdab8b292010-03-08 16:02:45 +11004722 .takeover = raid10_takeover,
NeilBrown3ea7daa2012-05-22 13:53:47 +10004723 .check_reshape = raid10_check_reshape,
4724 .start_reshape = raid10_start_reshape,
4725 .finish_reshape = raid10_finish_reshape,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726};
4727
4728static int __init raid_init(void)
4729{
NeilBrown2604b702006-01-06 00:20:36 -08004730 return register_md_personality(&raid10_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731}
4732
4733static void raid_exit(void)
4734{
NeilBrown2604b702006-01-06 00:20:36 -08004735 unregister_md_personality(&raid10_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736}
4737
4738module_init(raid_init);
4739module_exit(raid_exit);
4740MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11004741MODULE_DESCRIPTION("RAID10 (striped mirror) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742MODULE_ALIAS("md-personality-9"); /* RAID10 */
NeilBrownd9d166c2006-01-06 00:20:51 -08004743MODULE_ALIAS("md-raid10");
NeilBrown2604b702006-01-06 00:20:36 -08004744MODULE_ALIAS("md-level-10");
NeilBrown34db0cd2011-10-11 16:50:01 +11004745
4746module_param(max_queued_requests, int, S_IRUGO|S_IWUSR);