blob: 6ddae2501b9ae0fb2eb7119a4bf5467d9b6a90b2 [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 */
NeilBrown6cce3b232006-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
Alex Lyakas3056e3a2013-06-04 20:42:21 +0300493 /*
494 * Do not set R10BIO_Uptodate if the current device is
495 * rebuilding or Faulty. This is because we cannot use
496 * such device for properly reading the data back (we could
497 * potentially use it, if the current write would have felt
498 * before rdev->recovery_offset, but for simplicity we don't
499 * check this here.
500 */
501 if (test_bit(In_sync, &rdev->flags) &&
502 !test_bit(Faulty, &rdev->flags))
503 set_bit(R10BIO_Uptodate, &r10_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
NeilBrown749c55e2011-07-28 11:39:24 +1000505 /* Maybe we can clear some bad blocks. */
NeilBrown475b0322011-12-23 10:17:55 +1100506 if (is_badblock(rdev,
NeilBrown749c55e2011-07-28 11:39:24 +1000507 r10_bio->devs[slot].addr,
508 r10_bio->sectors,
509 &first_bad, &bad_sectors)) {
510 bio_put(bio);
NeilBrown475b0322011-12-23 10:17:55 +1100511 if (repl)
512 r10_bio->devs[slot].repl_bio = IO_MADE_GOOD;
513 else
514 r10_bio->devs[slot].bio = IO_MADE_GOOD;
NeilBrown749c55e2011-07-28 11:39:24 +1000515 dec_rdev = 0;
516 set_bit(R10BIO_MadeGood, &r10_bio->state);
517 }
518 }
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 /*
521 *
522 * Let's see if all mirrored write operations have finished
523 * already.
524 */
NeilBrown19d5f832011-09-10 17:21:17 +1000525 one_write_done(r10_bio);
NeilBrown749c55e2011-07-28 11:39:24 +1000526 if (dec_rdev)
NeilBrown884162d2012-11-22 15:12:09 +1100527 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530/*
531 * RAID10 layout manager
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300532 * As well as the chunksize and raid_disks count, there are two
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 * parameters: near_copies and far_copies.
534 * near_copies * far_copies must be <= raid_disks.
535 * Normally one of these will be 1.
536 * If both are 1, we get raid0.
537 * If near_copies == raid_disks, we get raid1.
538 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300539 * Chunks are laid out in raid0 style with near_copies copies of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 * first chunk, followed by near_copies copies of the next chunk and
541 * so on.
542 * If far_copies > 1, then after 1/far_copies of the array has been assigned
543 * as described above, we start again with a device offset of near_copies.
544 * So we effectively have another copy of the whole array further down all
545 * the drives, but with blocks on different drives.
546 * With this layout, and block is never stored twice on the one device.
547 *
548 * raid10_find_phys finds the sector offset of a given virtual sector
NeilBrownc93983b2006-06-26 00:27:41 -0700549 * on each device that it is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 *
551 * raid10_find_virt does the reverse mapping, from a device and a
552 * sector offset to a virtual address
553 */
554
NeilBrownf8c9e742012-05-21 09:28:33 +1000555static void __raid10_find_phys(struct geom *geo, struct r10bio *r10bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 int n,f;
558 sector_t sector;
559 sector_t chunk;
560 sector_t stripe;
561 int dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 int slot = 0;
Jonathan Brassow9a3152a2013-02-21 13:28:10 +1100563 int last_far_set_start, last_far_set_size;
564
565 last_far_set_start = (geo->raid_disks / geo->far_set_size) - 1;
566 last_far_set_start *= geo->far_set_size;
567
568 last_far_set_size = geo->far_set_size;
569 last_far_set_size += (geo->raid_disks % geo->far_set_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 /* now calculate first sector/dev */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000572 chunk = r10bio->sector >> geo->chunk_shift;
573 sector = r10bio->sector & geo->chunk_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
NeilBrown5cf00fc2012-05-21 09:28:20 +1000575 chunk *= geo->near_copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 stripe = chunk;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000577 dev = sector_div(stripe, geo->raid_disks);
578 if (geo->far_offset)
579 stripe *= geo->far_copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
NeilBrown5cf00fc2012-05-21 09:28:20 +1000581 sector += stripe << geo->chunk_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 /* and calculate all the others */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000584 for (n = 0; n < geo->near_copies; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 int d = dev;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100586 int set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 sector_t s = sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 r10bio->devs[slot].devnum = d;
Jonathan Brassow4c0ca262013-02-21 13:28:09 +1100589 r10bio->devs[slot].addr = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 slot++;
591
NeilBrown5cf00fc2012-05-21 09:28:20 +1000592 for (f = 1; f < geo->far_copies; f++) {
Jonathan Brassow475901a2013-02-21 13:28:10 +1100593 set = d / geo->far_set_size;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000594 d += geo->near_copies;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100595
Jonathan Brassow9a3152a2013-02-21 13:28:10 +1100596 if ((geo->raid_disks % geo->far_set_size) &&
597 (d > last_far_set_start)) {
598 d -= last_far_set_start;
599 d %= last_far_set_size;
600 d += last_far_set_start;
601 } else {
602 d %= geo->far_set_size;
603 d += geo->far_set_size * set;
604 }
NeilBrown5cf00fc2012-05-21 09:28:20 +1000605 s += geo->stride;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 r10bio->devs[slot].devnum = d;
607 r10bio->devs[slot].addr = s;
608 slot++;
609 }
610 dev++;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000611 if (dev >= geo->raid_disks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 dev = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000613 sector += (geo->chunk_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615 }
NeilBrownf8c9e742012-05-21 09:28:33 +1000616}
617
618static void raid10_find_phys(struct r10conf *conf, struct r10bio *r10bio)
619{
620 struct geom *geo = &conf->geo;
621
622 if (conf->reshape_progress != MaxSector &&
623 ((r10bio->sector >= conf->reshape_progress) !=
624 conf->mddev->reshape_backwards)) {
625 set_bit(R10BIO_Previous, &r10bio->state);
626 geo = &conf->prev;
627 } else
628 clear_bit(R10BIO_Previous, &r10bio->state);
629
630 __raid10_find_phys(geo, r10bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
NeilBrowne879a872011-10-11 16:49:02 +1100633static sector_t raid10_find_virt(struct r10conf *conf, sector_t sector, int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
635 sector_t offset, chunk, vchunk;
NeilBrownf8c9e742012-05-21 09:28:33 +1000636 /* Never use conf->prev as this is only called during resync
637 * or recovery, so reshape isn't happening
638 */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000639 struct geom *geo = &conf->geo;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100640 int far_set_start = (dev / geo->far_set_size) * geo->far_set_size;
641 int far_set_size = geo->far_set_size;
Jonathan Brassow9a3152a2013-02-21 13:28:10 +1100642 int last_far_set_start;
643
644 if (geo->raid_disks % geo->far_set_size) {
645 last_far_set_start = (geo->raid_disks / geo->far_set_size) - 1;
646 last_far_set_start *= geo->far_set_size;
647
648 if (dev >= last_far_set_start) {
649 far_set_size = geo->far_set_size;
650 far_set_size += (geo->raid_disks % geo->far_set_size);
651 far_set_start = last_far_set_start;
652 }
653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
NeilBrown5cf00fc2012-05-21 09:28:20 +1000655 offset = sector & geo->chunk_mask;
656 if (geo->far_offset) {
NeilBrownc93983b2006-06-26 00:27:41 -0700657 int fc;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000658 chunk = sector >> geo->chunk_shift;
659 fc = sector_div(chunk, geo->far_copies);
660 dev -= fc * geo->near_copies;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100661 if (dev < far_set_start)
662 dev += far_set_size;
NeilBrownc93983b2006-06-26 00:27:41 -0700663 } else {
NeilBrown5cf00fc2012-05-21 09:28:20 +1000664 while (sector >= geo->stride) {
665 sector -= geo->stride;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100666 if (dev < (geo->near_copies + far_set_start))
667 dev += far_set_size - geo->near_copies;
NeilBrownc93983b2006-06-26 00:27:41 -0700668 else
NeilBrown5cf00fc2012-05-21 09:28:20 +1000669 dev -= geo->near_copies;
NeilBrownc93983b2006-06-26 00:27:41 -0700670 }
NeilBrown5cf00fc2012-05-21 09:28:20 +1000671 chunk = sector >> geo->chunk_shift;
NeilBrownc93983b2006-06-26 00:27:41 -0700672 }
NeilBrown5cf00fc2012-05-21 09:28:20 +1000673 vchunk = chunk * geo->raid_disks + dev;
674 sector_div(vchunk, geo->near_copies);
675 return (vchunk << geo->chunk_shift) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
678/**
679 * raid10_mergeable_bvec -- tell bio layer if a two requests can be merged
680 * @q: request queue
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200681 * @bvm: properties of new bio
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 * @biovec: the request that could be merged to it.
683 *
684 * Return amount of bytes we can accept at this offset
NeilBrown050b6612012-03-19 12:46:39 +1100685 * This requires checking for end-of-chunk if near_copies != raid_disks,
686 * and for subordinate merge_bvec_fns if merge_check_needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200688static int raid10_mergeable_bvec(struct request_queue *q,
689 struct bvec_merge_data *bvm,
690 struct bio_vec *biovec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
NeilBrownfd01b882011-10-11 16:47:53 +1100692 struct mddev *mddev = q->queuedata;
NeilBrown050b6612012-03-19 12:46:39 +1100693 struct r10conf *conf = mddev->private;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200694 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 int max;
NeilBrown3ea7daa2012-05-22 13:53:47 +1000696 unsigned int chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200697 unsigned int bio_sectors = bvm->bi_size >> 9;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000698 struct geom *geo = &conf->geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
NeilBrown3ea7daa2012-05-22 13:53:47 +1000700 chunk_sectors = (conf->geo.chunk_mask & conf->prev.chunk_mask) + 1;
NeilBrownf8c9e742012-05-21 09:28:33 +1000701 if (conf->reshape_progress != MaxSector &&
702 ((sector >= conf->reshape_progress) !=
703 conf->mddev->reshape_backwards))
704 geo = &conf->prev;
705
NeilBrown5cf00fc2012-05-21 09:28:20 +1000706 if (geo->near_copies < geo->raid_disks) {
NeilBrown050b6612012-03-19 12:46:39 +1100707 max = (chunk_sectors - ((sector & (chunk_sectors - 1))
708 + bio_sectors)) << 9;
709 if (max < 0)
710 /* bio_add cannot handle a negative return */
711 max = 0;
712 if (max <= biovec->bv_len && bio_sectors == 0)
713 return biovec->bv_len;
714 } else
715 max = biovec->bv_len;
716
717 if (mddev->merge_check_needed) {
NeilBrowne0ee7782012-08-18 09:51:42 +1000718 struct {
719 struct r10bio r10_bio;
720 struct r10dev devs[conf->copies];
721 } on_stack;
722 struct r10bio *r10_bio = &on_stack.r10_bio;
NeilBrown050b6612012-03-19 12:46:39 +1100723 int s;
NeilBrownf8c9e742012-05-21 09:28:33 +1000724 if (conf->reshape_progress != MaxSector) {
725 /* Cannot give any guidance during reshape */
726 if (max <= biovec->bv_len && bio_sectors == 0)
727 return biovec->bv_len;
728 return 0;
729 }
NeilBrowne0ee7782012-08-18 09:51:42 +1000730 r10_bio->sector = sector;
731 raid10_find_phys(conf, r10_bio);
NeilBrown050b6612012-03-19 12:46:39 +1100732 rcu_read_lock();
733 for (s = 0; s < conf->copies; s++) {
NeilBrowne0ee7782012-08-18 09:51:42 +1000734 int disk = r10_bio->devs[s].devnum;
NeilBrown050b6612012-03-19 12:46:39 +1100735 struct md_rdev *rdev = rcu_dereference(
736 conf->mirrors[disk].rdev);
737 if (rdev && !test_bit(Faulty, &rdev->flags)) {
738 struct request_queue *q =
739 bdev_get_queue(rdev->bdev);
740 if (q->merge_bvec_fn) {
NeilBrowne0ee7782012-08-18 09:51:42 +1000741 bvm->bi_sector = r10_bio->devs[s].addr
NeilBrown050b6612012-03-19 12:46:39 +1100742 + rdev->data_offset;
743 bvm->bi_bdev = rdev->bdev;
744 max = min(max, q->merge_bvec_fn(
745 q, bvm, biovec));
746 }
747 }
748 rdev = rcu_dereference(conf->mirrors[disk].replacement);
749 if (rdev && !test_bit(Faulty, &rdev->flags)) {
750 struct request_queue *q =
751 bdev_get_queue(rdev->bdev);
752 if (q->merge_bvec_fn) {
NeilBrowne0ee7782012-08-18 09:51:42 +1000753 bvm->bi_sector = r10_bio->devs[s].addr
NeilBrown050b6612012-03-19 12:46:39 +1100754 + rdev->data_offset;
755 bvm->bi_bdev = rdev->bdev;
756 max = min(max, q->merge_bvec_fn(
757 q, bvm, biovec));
758 }
759 }
760 }
761 rcu_read_unlock();
762 }
763 return max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
766/*
767 * This routine returns the disk from which the requested read should
768 * be done. There is a per-array 'next expected sequential IO' sector
769 * number - if this matches on the next IO then we use the last disk.
770 * There is also a per-disk 'last know head position' sector that is
771 * maintained from IRQ contexts, both the normal and the resync IO
772 * completion handlers update this position correctly. If there is no
773 * perfect sequential match then we pick the disk whose head is closest.
774 *
775 * If there are 2 mirrors in the same 2 devices, performance degrades
776 * because position is mirror, not device based.
777 *
778 * The rdev for the device selected will have nr_pending incremented.
779 */
780
781/*
782 * FIXME: possibly should rethink readbalancing and do it differently
783 * depending on near_copies / far_copies geometry.
784 */
NeilBrown96c3fd12011-12-23 10:17:54 +1100785static struct md_rdev *read_balance(struct r10conf *conf,
786 struct r10bio *r10_bio,
787 int *max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000789 const sector_t this_sector = r10_bio->sector;
NeilBrown56d99122011-05-11 14:27:03 +1000790 int disk, slot;
NeilBrown856e08e2011-07-28 11:39:23 +1000791 int sectors = r10_bio->sectors;
792 int best_good_sectors;
NeilBrown56d99122011-05-11 14:27:03 +1000793 sector_t new_distance, best_dist;
Jonathan Brassow3bbae042012-07-31 10:03:52 +1000794 struct md_rdev *best_rdev, *rdev = NULL;
NeilBrown56d99122011-05-11 14:27:03 +1000795 int do_balance;
796 int best_slot;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000797 struct geom *geo = &conf->geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 raid10_find_phys(conf, r10_bio);
800 rcu_read_lock();
NeilBrown56d99122011-05-11 14:27:03 +1000801retry:
NeilBrown856e08e2011-07-28 11:39:23 +1000802 sectors = r10_bio->sectors;
NeilBrown56d99122011-05-11 14:27:03 +1000803 best_slot = -1;
NeilBrownabbf0982011-12-23 10:17:54 +1100804 best_rdev = NULL;
NeilBrown56d99122011-05-11 14:27:03 +1000805 best_dist = MaxSector;
NeilBrown856e08e2011-07-28 11:39:23 +1000806 best_good_sectors = 0;
NeilBrown56d99122011-05-11 14:27:03 +1000807 do_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /*
809 * Check if we can balance. We can balance on the whole
NeilBrown6cce3b232006-01-06 00:20:16 -0800810 * device if no resync is going on (recovery is ok), or below
811 * the resync window. We take the first readable disk when
812 * above the resync window.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 */
814 if (conf->mddev->recovery_cp < MaxSector
NeilBrown56d99122011-05-11 14:27:03 +1000815 && (this_sector + sectors >= conf->next_resync))
816 do_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
NeilBrown56d99122011-05-11 14:27:03 +1000818 for (slot = 0; slot < conf->copies ; slot++) {
NeilBrown856e08e2011-07-28 11:39:23 +1000819 sector_t first_bad;
820 int bad_sectors;
821 sector_t dev_sector;
822
NeilBrown56d99122011-05-11 14:27:03 +1000823 if (r10_bio->devs[slot].bio == IO_BLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 continue;
NeilBrown56d99122011-05-11 14:27:03 +1000825 disk = r10_bio->devs[slot].devnum;
NeilBrownabbf0982011-12-23 10:17:54 +1100826 rdev = rcu_dereference(conf->mirrors[disk].replacement);
827 if (rdev == NULL || test_bit(Faulty, &rdev->flags) ||
NeilBrown050b6612012-03-19 12:46:39 +1100828 test_bit(Unmerged, &rdev->flags) ||
NeilBrownabbf0982011-12-23 10:17:54 +1100829 r10_bio->devs[slot].addr + sectors > rdev->recovery_offset)
830 rdev = rcu_dereference(conf->mirrors[disk].rdev);
NeilBrown050b6612012-03-19 12:46:39 +1100831 if (rdev == NULL ||
832 test_bit(Faulty, &rdev->flags) ||
833 test_bit(Unmerged, &rdev->flags))
NeilBrownabbf0982011-12-23 10:17:54 +1100834 continue;
835 if (!test_bit(In_sync, &rdev->flags) &&
836 r10_bio->devs[slot].addr + sectors > rdev->recovery_offset)
NeilBrown56d99122011-05-11 14:27:03 +1000837 continue;
838
NeilBrown856e08e2011-07-28 11:39:23 +1000839 dev_sector = r10_bio->devs[slot].addr;
840 if (is_badblock(rdev, dev_sector, sectors,
841 &first_bad, &bad_sectors)) {
842 if (best_dist < MaxSector)
843 /* Already have a better slot */
844 continue;
845 if (first_bad <= dev_sector) {
846 /* Cannot read here. If this is the
847 * 'primary' device, then we must not read
848 * beyond 'bad_sectors' from another device.
849 */
850 bad_sectors -= (dev_sector - first_bad);
851 if (!do_balance && sectors > bad_sectors)
852 sectors = bad_sectors;
853 if (best_good_sectors > sectors)
854 best_good_sectors = sectors;
855 } else {
856 sector_t good_sectors =
857 first_bad - dev_sector;
858 if (good_sectors > best_good_sectors) {
859 best_good_sectors = good_sectors;
860 best_slot = slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100861 best_rdev = rdev;
NeilBrown856e08e2011-07-28 11:39:23 +1000862 }
863 if (!do_balance)
864 /* Must read from here */
865 break;
866 }
867 continue;
868 } else
869 best_good_sectors = sectors;
870
NeilBrown56d99122011-05-11 14:27:03 +1000871 if (!do_balance)
872 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
NeilBrown22dfdf52005-11-28 13:44:09 -0800874 /* This optimisation is debatable, and completely destroys
875 * sequential read speed for 'far copies' arrays. So only
876 * keep it for 'near' arrays, and review those later.
877 */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000878 if (geo->near_copies > 1 && !atomic_read(&rdev->nr_pending))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 break;
Keld Simonsen8ed3a192008-03-04 14:29:34 -0800880
881 /* for far > 1 always use the lowest address */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000882 if (geo->far_copies > 1)
NeilBrown56d99122011-05-11 14:27:03 +1000883 new_distance = r10_bio->devs[slot].addr;
Keld Simonsen8ed3a192008-03-04 14:29:34 -0800884 else
NeilBrown56d99122011-05-11 14:27:03 +1000885 new_distance = abs(r10_bio->devs[slot].addr -
886 conf->mirrors[disk].head_position);
887 if (new_distance < best_dist) {
888 best_dist = new_distance;
889 best_slot = slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100890 best_rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892 }
NeilBrownabbf0982011-12-23 10:17:54 +1100893 if (slot >= conf->copies) {
NeilBrown56d99122011-05-11 14:27:03 +1000894 slot = best_slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100895 rdev = best_rdev;
896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
NeilBrown56d99122011-05-11 14:27:03 +1000898 if (slot >= 0) {
NeilBrown56d99122011-05-11 14:27:03 +1000899 atomic_inc(&rdev->nr_pending);
900 if (test_bit(Faulty, &rdev->flags)) {
901 /* Cannot risk returning a device that failed
902 * before we inc'ed nr_pending
903 */
904 rdev_dec_pending(rdev, conf->mddev);
905 goto retry;
906 }
907 r10_bio->read_slot = slot;
908 } else
NeilBrown96c3fd12011-12-23 10:17:54 +1100909 rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 rcu_read_unlock();
NeilBrown856e08e2011-07-28 11:39:23 +1000911 *max_sectors = best_good_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
NeilBrown96c3fd12011-12-23 10:17:54 +1100913 return rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +1000916int md_raid10_congested(struct mddev *mddev, int bits)
NeilBrown0d129222006-10-03 01:15:54 -0700917{
NeilBrowne879a872011-10-11 16:49:02 +1100918 struct r10conf *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700919 int i, ret = 0;
920
NeilBrown34db0cd2011-10-11 16:50:01 +1100921 if ((bits & (1 << BDI_async_congested)) &&
922 conf->pending_count >= max_queued_requests)
923 return 1;
924
NeilBrown0d129222006-10-03 01:15:54 -0700925 rcu_read_lock();
NeilBrownf8c9e742012-05-21 09:28:33 +1000926 for (i = 0;
927 (i < conf->geo.raid_disks || i < conf->prev.raid_disks)
928 && ret == 0;
929 i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100930 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
NeilBrown0d129222006-10-03 01:15:54 -0700931 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200932 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700933
934 ret |= bdi_congested(&q->backing_dev_info, bits);
935 }
936 }
937 rcu_read_unlock();
938 return ret;
939}
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +1000940EXPORT_SYMBOL_GPL(md_raid10_congested);
941
942static int raid10_congested(void *data, int bits)
943{
944 struct mddev *mddev = data;
945
946 return mddev_congested(mddev, bits) ||
947 md_raid10_congested(mddev, bits);
948}
NeilBrown0d129222006-10-03 01:15:54 -0700949
NeilBrowne879a872011-10-11 16:49:02 +1100950static void flush_pending_writes(struct r10conf *conf)
NeilBrowna35e63e2008-03-04 14:29:29 -0800951{
952 /* Any writes that have been queued but are awaiting
953 * bitmap updates get flushed here.
NeilBrowna35e63e2008-03-04 14:29:29 -0800954 */
NeilBrowna35e63e2008-03-04 14:29:29 -0800955 spin_lock_irq(&conf->device_lock);
956
957 if (conf->pending_bio_list.head) {
958 struct bio *bio;
959 bio = bio_list_get(&conf->pending_bio_list);
NeilBrown34db0cd2011-10-11 16:50:01 +1100960 conf->pending_count = 0;
NeilBrowna35e63e2008-03-04 14:29:29 -0800961 spin_unlock_irq(&conf->device_lock);
962 /* flush any pending bitmap writes to disk
963 * before proceeding w/ I/O */
964 bitmap_unplug(conf->mddev->bitmap);
NeilBrown34db0cd2011-10-11 16:50:01 +1100965 wake_up(&conf->wait_barrier);
NeilBrowna35e63e2008-03-04 14:29:29 -0800966
967 while (bio) { /* submit pending writes */
968 struct bio *next = bio->bi_next;
969 bio->bi_next = NULL;
Shaohua Li532a2a32012-10-11 13:30:52 +1100970 if (unlikely((bio->bi_rw & REQ_DISCARD) &&
971 !blk_queue_discard(bdev_get_queue(bio->bi_bdev))))
972 /* Just ignore it */
973 bio_endio(bio, 0);
974 else
975 generic_make_request(bio);
NeilBrowna35e63e2008-03-04 14:29:29 -0800976 bio = next;
977 }
NeilBrowna35e63e2008-03-04 14:29:29 -0800978 } else
979 spin_unlock_irq(&conf->device_lock);
NeilBrowna35e63e2008-03-04 14:29:29 -0800980}
Jens Axboe7eaceac2011-03-10 08:52:07 +0100981
NeilBrown0a27ec92006-01-06 00:20:13 -0800982/* Barriers....
983 * Sometimes we need to suspend IO while we do something else,
984 * either some resync/recovery, or reconfigure the array.
985 * To do this we raise a 'barrier'.
986 * The 'barrier' is a counter that can be raised multiple times
987 * to count how many activities are happening which preclude
988 * normal IO.
989 * We can only raise the barrier if there is no pending IO.
990 * i.e. if nr_pending == 0.
991 * We choose only to raise the barrier if no-one is waiting for the
992 * barrier to go down. This means that as soon as an IO request
993 * is ready, no other operations which require a barrier will start
994 * until the IO request has had a chance.
995 *
996 * So: regular IO calls 'wait_barrier'. When that returns there
997 * is no backgroup IO happening, It must arrange to call
998 * allow_barrier when it has finished its IO.
999 * backgroup IO calls must call raise_barrier. Once that returns
1000 * there is no normal IO happeing. It must arrange to call
1001 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
NeilBrowne879a872011-10-11 16:49:02 +11001004static void raise_barrier(struct r10conf *conf, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
NeilBrown6cce3b232006-01-06 00:20:16 -08001006 BUG_ON(force && !conf->barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 spin_lock_irq(&conf->resync_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
NeilBrown6cce3b232006-01-06 00:20:16 -08001009 /* Wait until no block IO is waiting (unless 'force') */
1010 wait_event_lock_irq(conf->wait_barrier, force || !conf->nr_waiting,
Lukas Czernereed8c022012-11-30 11:42:40 +01001011 conf->resync_lock);
NeilBrown0a27ec92006-01-06 00:20:13 -08001012
1013 /* block any new IO from starting */
1014 conf->barrier++;
1015
NeilBrownc3b328a2011-04-18 18:25:43 +10001016 /* Now wait for all pending IO to complete */
NeilBrown0a27ec92006-01-06 00:20:13 -08001017 wait_event_lock_irq(conf->wait_barrier,
1018 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
Lukas Czernereed8c022012-11-30 11:42:40 +01001019 conf->resync_lock);
NeilBrown0a27ec92006-01-06 00:20:13 -08001020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 spin_unlock_irq(&conf->resync_lock);
1022}
1023
NeilBrowne879a872011-10-11 16:49:02 +11001024static void lower_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -08001025{
1026 unsigned long flags;
1027 spin_lock_irqsave(&conf->resync_lock, flags);
1028 conf->barrier--;
1029 spin_unlock_irqrestore(&conf->resync_lock, flags);
1030 wake_up(&conf->wait_barrier);
1031}
1032
NeilBrowne879a872011-10-11 16:49:02 +11001033static void wait_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -08001034{
1035 spin_lock_irq(&conf->resync_lock);
1036 if (conf->barrier) {
1037 conf->nr_waiting++;
NeilBrownd6b42dc2012-03-19 12:46:38 +11001038 /* Wait for the barrier to drop.
1039 * However if there are already pending
1040 * requests (preventing the barrier from
1041 * rising completely), and the
1042 * pre-process bio queue isn't empty,
1043 * then don't wait, as we need to empty
1044 * that queue to get the nr_pending
1045 * count down.
1046 */
1047 wait_event_lock_irq(conf->wait_barrier,
1048 !conf->barrier ||
1049 (conf->nr_pending &&
1050 current->bio_list &&
1051 !bio_list_empty(current->bio_list)),
Lukas Czernereed8c022012-11-30 11:42:40 +01001052 conf->resync_lock);
NeilBrown0a27ec92006-01-06 00:20:13 -08001053 conf->nr_waiting--;
1054 }
1055 conf->nr_pending++;
1056 spin_unlock_irq(&conf->resync_lock);
1057}
1058
NeilBrowne879a872011-10-11 16:49:02 +11001059static void allow_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -08001060{
1061 unsigned long flags;
1062 spin_lock_irqsave(&conf->resync_lock, flags);
1063 conf->nr_pending--;
1064 spin_unlock_irqrestore(&conf->resync_lock, flags);
1065 wake_up(&conf->wait_barrier);
1066}
1067
NeilBrowne2d59922013-06-12 11:01:22 +10001068static void freeze_array(struct r10conf *conf, int extra)
NeilBrown4443ae12006-01-06 00:20:28 -08001069{
1070 /* stop syncio and normal IO and wait for everything to
NeilBrownf1885932006-01-06 00:20:42 -08001071 * go quiet.
NeilBrown4443ae12006-01-06 00:20:28 -08001072 * We increment barrier and nr_waiting, and then
NeilBrowne2d59922013-06-12 11:01:22 +10001073 * wait until nr_pending match nr_queued+extra
NeilBrown1c830532008-03-04 14:29:35 -08001074 * This is called in the context of one normal IO request
1075 * that has failed. Thus any sync request that might be pending
1076 * will be blocked by nr_pending, and we need to wait for
1077 * pending IO requests to complete or be queued for re-try.
NeilBrowne2d59922013-06-12 11:01:22 +10001078 * Thus the number queued (nr_queued) plus this request (extra)
NeilBrown1c830532008-03-04 14:29:35 -08001079 * must match the number of pending IOs (nr_pending) before
1080 * we continue.
NeilBrown4443ae12006-01-06 00:20:28 -08001081 */
1082 spin_lock_irq(&conf->resync_lock);
1083 conf->barrier++;
1084 conf->nr_waiting++;
Lukas Czernereed8c022012-11-30 11:42:40 +01001085 wait_event_lock_irq_cmd(conf->wait_barrier,
NeilBrowne2d59922013-06-12 11:01:22 +10001086 conf->nr_pending == conf->nr_queued+extra,
Lukas Czernereed8c022012-11-30 11:42:40 +01001087 conf->resync_lock,
1088 flush_pending_writes(conf));
NeilBrownc3b328a2011-04-18 18:25:43 +10001089
NeilBrown4443ae12006-01-06 00:20:28 -08001090 spin_unlock_irq(&conf->resync_lock);
1091}
1092
NeilBrowne879a872011-10-11 16:49:02 +11001093static void unfreeze_array(struct r10conf *conf)
NeilBrown4443ae12006-01-06 00:20:28 -08001094{
1095 /* reverse the effect of the freeze */
1096 spin_lock_irq(&conf->resync_lock);
1097 conf->barrier--;
1098 conf->nr_waiting--;
1099 wake_up(&conf->wait_barrier);
1100 spin_unlock_irq(&conf->resync_lock);
1101}
1102
NeilBrownf8c9e742012-05-21 09:28:33 +10001103static sector_t choose_data_offset(struct r10bio *r10_bio,
1104 struct md_rdev *rdev)
1105{
1106 if (!test_bit(MD_RECOVERY_RESHAPE, &rdev->mddev->recovery) ||
1107 test_bit(R10BIO_Previous, &r10_bio->state))
1108 return rdev->data_offset;
1109 else
1110 return rdev->new_data_offset;
1111}
1112
NeilBrown57c67df2012-10-11 13:32:13 +11001113struct raid10_plug_cb {
1114 struct blk_plug_cb cb;
1115 struct bio_list pending;
1116 int pending_cnt;
1117};
1118
1119static void raid10_unplug(struct blk_plug_cb *cb, bool from_schedule)
1120{
1121 struct raid10_plug_cb *plug = container_of(cb, struct raid10_plug_cb,
1122 cb);
1123 struct mddev *mddev = plug->cb.data;
1124 struct r10conf *conf = mddev->private;
1125 struct bio *bio;
1126
NeilBrown874807a2012-11-27 12:14:40 +11001127 if (from_schedule || current->bio_list) {
NeilBrown57c67df2012-10-11 13:32:13 +11001128 spin_lock_irq(&conf->device_lock);
1129 bio_list_merge(&conf->pending_bio_list, &plug->pending);
1130 conf->pending_count += plug->pending_cnt;
1131 spin_unlock_irq(&conf->device_lock);
NeilBrownee0b0242013-02-25 12:38:29 +11001132 wake_up(&conf->wait_barrier);
NeilBrown57c67df2012-10-11 13:32:13 +11001133 md_wakeup_thread(mddev->thread);
1134 kfree(plug);
1135 return;
1136 }
1137
1138 /* we aren't scheduling, so we can do the write-out directly. */
1139 bio = bio_list_get(&plug->pending);
1140 bitmap_unplug(mddev->bitmap);
1141 wake_up(&conf->wait_barrier);
1142
1143 while (bio) { /* submit pending writes */
1144 struct bio *next = bio->bi_next;
1145 bio->bi_next = NULL;
Shaohua Li32f9f572013-04-28 18:26:38 +08001146 if (unlikely((bio->bi_rw & REQ_DISCARD) &&
1147 !blk_queue_discard(bdev_get_queue(bio->bi_bdev))))
1148 /* Just ignore it */
1149 bio_endio(bio, 0);
1150 else
1151 generic_make_request(bio);
NeilBrown57c67df2012-10-11 13:32:13 +11001152 bio = next;
1153 }
1154 kfree(plug);
1155}
1156
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -07001157static void make_request(struct mddev *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
NeilBrowne879a872011-10-11 16:49:02 +11001159 struct r10conf *conf = mddev->private;
NeilBrown9f2c9d12011-10-11 16:48:43 +11001160 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 struct bio *read_bio;
1162 int i;
NeilBrownf8c9e742012-05-21 09:28:33 +10001163 sector_t chunk_mask = (conf->geo.chunk_mask & conf->prev.chunk_mask);
NeilBrown5cf00fc2012-05-21 09:28:20 +10001164 int chunk_sects = chunk_mask + 1;
Jens Axboea3623572005-11-01 09:26:16 +01001165 const int rw = bio_data_dir(bio);
NeilBrown2c7d46e2010-08-18 16:16:05 +10001166 const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
Tejun Heoe9c74692010-09-03 11:56:18 +02001167 const unsigned long do_fua = (bio->bi_rw & REQ_FUA);
Shaohua Li532a2a32012-10-11 13:30:52 +11001168 const unsigned long do_discard = (bio->bi_rw
1169 & (REQ_DISCARD | REQ_SECURE));
Joe Lawrencec8dc9c62013-02-21 13:28:09 +11001170 const unsigned long do_same = (bio->bi_rw & REQ_WRITE_SAME);
NeilBrown6cce3b232006-01-06 00:20:16 -08001171 unsigned long flags;
NeilBrown3cb03002011-10-11 16:45:26 +11001172 struct md_rdev *blocked_rdev;
NeilBrown57c67df2012-10-11 13:32:13 +11001173 struct blk_plug_cb *cb;
1174 struct raid10_plug_cb *plug = NULL;
NeilBrownd4432c22011-07-28 11:39:24 +10001175 int sectors_handled;
1176 int max_sectors;
NeilBrown3ea7daa2012-05-22 13:53:47 +10001177 int sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Tejun Heoe9c74692010-09-03 11:56:18 +02001179 if (unlikely(bio->bi_rw & REQ_FLUSH)) {
1180 md_flush_request(mddev, bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001181 return;
NeilBrowne5dcdd82005-09-09 16:23:41 -07001182 }
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 /* If this request crosses a chunk boundary, we need to
1185 * split it. This will only happen for 1 PAGE (or less) requests.
1186 */
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08001187 if (unlikely((bio->bi_sector & chunk_mask) + bio_sectors(bio)
NeilBrown5cf00fc2012-05-21 09:28:20 +10001188 > chunk_sects
NeilBrownf8c9e742012-05-21 09:28:33 +10001189 && (conf->geo.near_copies < conf->geo.raid_disks
1190 || conf->prev.near_copies < conf->prev.raid_disks))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 struct bio_pair *bp;
1192 /* Sanity check -- queue functions should prevent this happening */
Kent Overstreet5b836362012-09-04 15:20:38 -07001193 if (bio_segments(bio) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 goto bad_map;
1195 /* This is a one page bio that upper layers
1196 * refuse to split for us, so we need to split it.
1197 */
Denis ChengRq6feef532008-10-09 08:57:05 +02001198 bp = bio_split(bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 chunk_sects - (bio->bi_sector & (chunk_sects - 1)) );
NeilBrown51e9ac72010-08-07 21:17:00 +10001200
1201 /* Each of these 'make_request' calls will call 'wait_barrier'.
1202 * If the first succeeds but the second blocks due to the resync
1203 * thread raising the barrier, we will deadlock because the
1204 * IO to the underlying device will be queued in generic_make_request
1205 * and will never complete, so will never reduce nr_pending.
1206 * So increment nr_waiting here so no new raise_barriers will
1207 * succeed, and so the second wait_barrier cannot block.
1208 */
1209 spin_lock_irq(&conf->resync_lock);
1210 conf->nr_waiting++;
1211 spin_unlock_irq(&conf->resync_lock);
1212
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001213 make_request(mddev, &bp->bio1);
1214 make_request(mddev, &bp->bio2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
NeilBrown51e9ac72010-08-07 21:17:00 +10001216 spin_lock_irq(&conf->resync_lock);
1217 conf->nr_waiting--;
1218 wake_up(&conf->wait_barrier);
1219 spin_unlock_irq(&conf->resync_lock);
1220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 bio_pair_release(bp);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001222 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 bad_map:
NeilBrown128595e2010-05-03 14:47:14 +10001224 printk("md/raid10:%s: make_request bug: can't convert block across chunks"
1225 " or bigger than %dk %llu %d\n", mdname(mddev), chunk_sects/2,
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08001226 (unsigned long long)bio->bi_sector, bio_sectors(bio) / 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
NeilBrown6712ecf2007-09-27 12:47:43 +02001228 bio_io_error(bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001229 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231
NeilBrown3d310eb2005-06-21 17:17:26 -07001232 md_write_start(mddev, bio);
NeilBrown06d91a52005-06-21 17:17:12 -07001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 /*
1235 * Register the new request and wait if the reconstruction
1236 * thread has put up a bar for new requests.
1237 * Continue immediately if no resync is active currently.
1238 */
NeilBrown0a27ec92006-01-06 00:20:13 -08001239 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08001241 sectors = bio_sectors(bio);
NeilBrown3ea7daa2012-05-22 13:53:47 +10001242 while (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery) &&
1243 bio->bi_sector < conf->reshape_progress &&
1244 bio->bi_sector + sectors > conf->reshape_progress) {
1245 /* IO spans the reshape position. Need to wait for
1246 * reshape to pass
1247 */
1248 allow_barrier(conf);
1249 wait_event(conf->wait_barrier,
1250 conf->reshape_progress <= bio->bi_sector ||
1251 conf->reshape_progress >= bio->bi_sector + sectors);
1252 wait_barrier(conf);
1253 }
1254 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery) &&
1255 bio_data_dir(bio) == WRITE &&
1256 (mddev->reshape_backwards
1257 ? (bio->bi_sector < conf->reshape_safe &&
1258 bio->bi_sector + sectors > conf->reshape_progress)
1259 : (bio->bi_sector + sectors > conf->reshape_safe &&
1260 bio->bi_sector < conf->reshape_progress))) {
1261 /* Need to update reshape_position in metadata */
1262 mddev->reshape_position = conf->reshape_progress;
1263 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1264 set_bit(MD_CHANGE_PENDING, &mddev->flags);
1265 md_wakeup_thread(mddev->thread);
1266 wait_event(mddev->sb_wait,
1267 !test_bit(MD_CHANGE_PENDING, &mddev->flags));
1268
1269 conf->reshape_safe = mddev->reshape_position;
1270 }
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1273
1274 r10_bio->master_bio = bio;
NeilBrown3ea7daa2012-05-22 13:53:47 +10001275 r10_bio->sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 r10_bio->mddev = mddev;
1278 r10_bio->sector = bio->bi_sector;
NeilBrown6cce3b232006-01-06 00:20:16 -08001279 r10_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
NeilBrown856e08e2011-07-28 11:39:23 +10001281 /* We might need to issue multiple reads to different
1282 * devices if there are bad blocks around, so we keep
1283 * track of the number of reads in bio->bi_phys_segments.
1284 * If this is 0, there is only one r10_bio and no locking
1285 * will be needed when the request completes. If it is
1286 * non-zero, then it is the number of not-completed requests.
1287 */
1288 bio->bi_phys_segments = 0;
1289 clear_bit(BIO_SEG_VALID, &bio->bi_flags);
1290
Jens Axboea3623572005-11-01 09:26:16 +01001291 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 /*
1293 * read balancing logic:
1294 */
NeilBrown96c3fd12011-12-23 10:17:54 +11001295 struct md_rdev *rdev;
NeilBrown856e08e2011-07-28 11:39:23 +10001296 int slot;
1297
1298read_again:
NeilBrown96c3fd12011-12-23 10:17:54 +11001299 rdev = read_balance(conf, r10_bio, &max_sectors);
1300 if (!rdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 raid_end_bio_io(r10_bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001302 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
NeilBrown96c3fd12011-12-23 10:17:54 +11001304 slot = r10_bio->read_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
NeilBrowna167f662010-10-26 18:31:13 +11001306 read_bio = bio_clone_mddev(bio, GFP_NOIO, mddev);
NeilBrown856e08e2011-07-28 11:39:23 +10001307 md_trim_bio(read_bio, r10_bio->sector - bio->bi_sector,
1308 max_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 r10_bio->devs[slot].bio = read_bio;
NeilBrownabbf0982011-12-23 10:17:54 +11001311 r10_bio->devs[slot].rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 read_bio->bi_sector = r10_bio->devs[slot].addr +
NeilBrownf8c9e742012-05-21 09:28:33 +10001314 choose_data_offset(r10_bio, rdev);
NeilBrown96c3fd12011-12-23 10:17:54 +11001315 read_bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 read_bio->bi_end_io = raid10_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001317 read_bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 read_bio->bi_private = r10_bio;
1319
NeilBrown856e08e2011-07-28 11:39:23 +10001320 if (max_sectors < r10_bio->sectors) {
1321 /* Could not read all from this device, so we will
1322 * need another r10_bio.
1323 */
NeilBrown856e08e2011-07-28 11:39:23 +10001324 sectors_handled = (r10_bio->sectors + max_sectors
1325 - bio->bi_sector);
1326 r10_bio->sectors = max_sectors;
1327 spin_lock_irq(&conf->device_lock);
1328 if (bio->bi_phys_segments == 0)
1329 bio->bi_phys_segments = 2;
1330 else
1331 bio->bi_phys_segments++;
1332 spin_unlock(&conf->device_lock);
1333 /* Cannot call generic_make_request directly
1334 * as that will be queued in __generic_make_request
1335 * and subsequent mempool_alloc might block
1336 * waiting for it. so hand bio over to raid10d.
1337 */
1338 reschedule_retry(r10_bio);
1339
1340 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1341
1342 r10_bio->master_bio = bio;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08001343 r10_bio->sectors = bio_sectors(bio) - sectors_handled;
NeilBrown856e08e2011-07-28 11:39:23 +10001344 r10_bio->state = 0;
1345 r10_bio->mddev = mddev;
1346 r10_bio->sector = bio->bi_sector + sectors_handled;
1347 goto read_again;
1348 } else
1349 generic_make_request(read_bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001350 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
1352
1353 /*
1354 * WRITE:
1355 */
NeilBrown34db0cd2011-10-11 16:50:01 +11001356 if (conf->pending_count >= max_queued_requests) {
1357 md_wakeup_thread(mddev->thread);
1358 wait_event(conf->wait_barrier,
1359 conf->pending_count < max_queued_requests);
1360 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07001361 /* first select target devices under rcu_lock and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 * inc refcount on their rdev. Record them by setting
1363 * bios[x] to bio
NeilBrownd4432c22011-07-28 11:39:24 +10001364 * If there are known/acknowledged bad blocks on any device
1365 * on which we have seen a write error, we want to avoid
1366 * writing to those blocks. This potentially requires several
1367 * writes to write around the bad blocks. Each set of writes
1368 * gets its own r10_bio with a set of bios attached. The number
1369 * of r10_bios is recored in bio->bi_phys_segments just as with
1370 * the read case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 */
NeilBrownc3b328a2011-04-18 18:25:43 +10001372
NeilBrown69335ef2011-12-23 10:17:54 +11001373 r10_bio->read_slot = -1; /* make sure repl_bio gets freed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 raid10_find_phys(conf, r10_bio);
NeilBrownd4432c22011-07-28 11:39:24 +10001375retry_write:
Harvey Harrisoncb6969e2008-05-06 20:42:32 -07001376 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 rcu_read_lock();
NeilBrownd4432c22011-07-28 11:39:24 +10001378 max_sectors = r10_bio->sectors;
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 for (i = 0; i < conf->copies; i++) {
1381 int d = r10_bio->devs[i].devnum;
NeilBrown3cb03002011-10-11 16:45:26 +11001382 struct md_rdev *rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown475b0322011-12-23 10:17:55 +11001383 struct md_rdev *rrdev = rcu_dereference(
1384 conf->mirrors[d].replacement);
NeilBrown4ca40c22011-12-23 10:17:55 +11001385 if (rdev == rrdev)
1386 rrdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07001387 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
1388 atomic_inc(&rdev->nr_pending);
1389 blocked_rdev = rdev;
1390 break;
1391 }
NeilBrown475b0322011-12-23 10:17:55 +11001392 if (rrdev && unlikely(test_bit(Blocked, &rrdev->flags))) {
1393 atomic_inc(&rrdev->nr_pending);
1394 blocked_rdev = rrdev;
1395 break;
1396 }
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001397 if (rdev && (test_bit(Faulty, &rdev->flags)
1398 || test_bit(Unmerged, &rdev->flags)))
1399 rdev = NULL;
NeilBrown050b6612012-03-19 12:46:39 +11001400 if (rrdev && (test_bit(Faulty, &rrdev->flags)
1401 || test_bit(Unmerged, &rrdev->flags)))
NeilBrown475b0322011-12-23 10:17:55 +11001402 rrdev = NULL;
1403
NeilBrownd4432c22011-07-28 11:39:24 +10001404 r10_bio->devs[i].bio = NULL;
NeilBrown475b0322011-12-23 10:17:55 +11001405 r10_bio->devs[i].repl_bio = NULL;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001406
1407 if (!rdev && !rrdev) {
NeilBrown6cce3b232006-01-06 00:20:16 -08001408 set_bit(R10BIO_Degraded, &r10_bio->state);
NeilBrownd4432c22011-07-28 11:39:24 +10001409 continue;
NeilBrown6cce3b232006-01-06 00:20:16 -08001410 }
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001411 if (rdev && test_bit(WriteErrorSeen, &rdev->flags)) {
NeilBrownd4432c22011-07-28 11:39:24 +10001412 sector_t first_bad;
1413 sector_t dev_sector = r10_bio->devs[i].addr;
1414 int bad_sectors;
1415 int is_bad;
1416
1417 is_bad = is_badblock(rdev, dev_sector,
1418 max_sectors,
1419 &first_bad, &bad_sectors);
1420 if (is_bad < 0) {
1421 /* Mustn't write here until the bad block
1422 * is acknowledged
1423 */
1424 atomic_inc(&rdev->nr_pending);
1425 set_bit(BlockedBadBlocks, &rdev->flags);
1426 blocked_rdev = rdev;
1427 break;
1428 }
1429 if (is_bad && first_bad <= dev_sector) {
1430 /* Cannot write here at all */
1431 bad_sectors -= (dev_sector - first_bad);
1432 if (bad_sectors < max_sectors)
1433 /* Mustn't write more than bad_sectors
1434 * to other devices yet
1435 */
1436 max_sectors = bad_sectors;
1437 /* We don't set R10BIO_Degraded as that
1438 * only applies if the disk is missing,
1439 * so it might be re-added, and we want to
1440 * know to recover this chunk.
1441 * In this case the device is here, and the
1442 * fact that this chunk is not in-sync is
1443 * recorded in the bad block log.
1444 */
1445 continue;
1446 }
1447 if (is_bad) {
1448 int good_sectors = first_bad - dev_sector;
1449 if (good_sectors < max_sectors)
1450 max_sectors = good_sectors;
1451 }
1452 }
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001453 if (rdev) {
1454 r10_bio->devs[i].bio = bio;
1455 atomic_inc(&rdev->nr_pending);
1456 }
NeilBrown475b0322011-12-23 10:17:55 +11001457 if (rrdev) {
1458 r10_bio->devs[i].repl_bio = bio;
1459 atomic_inc(&rrdev->nr_pending);
1460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
1462 rcu_read_unlock();
1463
Dan Williams6bfe0b42008-04-30 00:52:32 -07001464 if (unlikely(blocked_rdev)) {
1465 /* Have to wait for this device to get unblocked, then retry */
1466 int j;
1467 int d;
1468
NeilBrown475b0322011-12-23 10:17:55 +11001469 for (j = 0; j < i; j++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07001470 if (r10_bio->devs[j].bio) {
1471 d = r10_bio->devs[j].devnum;
1472 rdev_dec_pending(conf->mirrors[d].rdev, mddev);
1473 }
NeilBrown475b0322011-12-23 10:17:55 +11001474 if (r10_bio->devs[j].repl_bio) {
NeilBrown4ca40c22011-12-23 10:17:55 +11001475 struct md_rdev *rdev;
NeilBrown475b0322011-12-23 10:17:55 +11001476 d = r10_bio->devs[j].devnum;
NeilBrown4ca40c22011-12-23 10:17:55 +11001477 rdev = conf->mirrors[d].replacement;
1478 if (!rdev) {
1479 /* Race with remove_disk */
1480 smp_mb();
1481 rdev = conf->mirrors[d].rdev;
1482 }
1483 rdev_dec_pending(rdev, mddev);
NeilBrown475b0322011-12-23 10:17:55 +11001484 }
1485 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07001486 allow_barrier(conf);
1487 md_wait_for_blocked_rdev(blocked_rdev, mddev);
1488 wait_barrier(conf);
1489 goto retry_write;
1490 }
1491
NeilBrownd4432c22011-07-28 11:39:24 +10001492 if (max_sectors < r10_bio->sectors) {
1493 /* We are splitting this into multiple parts, so
1494 * we need to prepare for allocating another r10_bio.
1495 */
1496 r10_bio->sectors = max_sectors;
1497 spin_lock_irq(&conf->device_lock);
1498 if (bio->bi_phys_segments == 0)
1499 bio->bi_phys_segments = 2;
1500 else
1501 bio->bi_phys_segments++;
1502 spin_unlock_irq(&conf->device_lock);
1503 }
1504 sectors_handled = r10_bio->sector + max_sectors - bio->bi_sector;
1505
NeilBrown4e780642010-10-19 12:54:01 +11001506 atomic_set(&r10_bio->remaining, 1);
NeilBrownd4432c22011-07-28 11:39:24 +10001507 bitmap_startwrite(mddev->bitmap, r10_bio->sector, r10_bio->sectors, 0);
NeilBrown06d91a52005-06-21 17:17:12 -07001508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 for (i = 0; i < conf->copies; i++) {
1510 struct bio *mbio;
1511 int d = r10_bio->devs[i].devnum;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001512 if (r10_bio->devs[i].bio) {
1513 struct md_rdev *rdev = conf->mirrors[d].rdev;
1514 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
1515 md_trim_bio(mbio, r10_bio->sector - bio->bi_sector,
1516 max_sectors);
1517 r10_bio->devs[i].bio = mbio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001519 mbio->bi_sector = (r10_bio->devs[i].addr+
1520 choose_data_offset(r10_bio,
1521 rdev));
1522 mbio->bi_bdev = rdev->bdev;
1523 mbio->bi_end_io = raid10_end_write_request;
Joe Lawrencec8dc9c62013-02-21 13:28:09 +11001524 mbio->bi_rw =
1525 WRITE | do_sync | do_fua | do_discard | do_same;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001526 mbio->bi_private = r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001528 atomic_inc(&r10_bio->remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001530 cb = blk_check_plugged(raid10_unplug, mddev,
1531 sizeof(*plug));
1532 if (cb)
1533 plug = container_of(cb, struct raid10_plug_cb,
1534 cb);
1535 else
1536 plug = NULL;
1537 spin_lock_irqsave(&conf->device_lock, flags);
1538 if (plug) {
1539 bio_list_add(&plug->pending, mbio);
1540 plug->pending_cnt++;
1541 } else {
1542 bio_list_add(&conf->pending_bio_list, mbio);
1543 conf->pending_count++;
1544 }
1545 spin_unlock_irqrestore(&conf->device_lock, flags);
1546 if (!plug)
1547 md_wakeup_thread(mddev->thread);
1548 }
NeilBrown57c67df2012-10-11 13:32:13 +11001549
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001550 if (r10_bio->devs[i].repl_bio) {
1551 struct md_rdev *rdev = conf->mirrors[d].replacement;
1552 if (rdev == NULL) {
1553 /* Replacement just got moved to main 'rdev' */
1554 smp_mb();
1555 rdev = conf->mirrors[d].rdev;
1556 }
1557 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
1558 md_trim_bio(mbio, r10_bio->sector - bio->bi_sector,
1559 max_sectors);
1560 r10_bio->devs[i].repl_bio = mbio;
1561
1562 mbio->bi_sector = (r10_bio->devs[i].addr +
1563 choose_data_offset(
1564 r10_bio, rdev));
1565 mbio->bi_bdev = rdev->bdev;
1566 mbio->bi_end_io = raid10_end_write_request;
Joe Lawrencec8dc9c62013-02-21 13:28:09 +11001567 mbio->bi_rw =
1568 WRITE | do_sync | do_fua | do_discard | do_same;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001569 mbio->bi_private = r10_bio;
1570
1571 atomic_inc(&r10_bio->remaining);
1572 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown57c67df2012-10-11 13:32:13 +11001573 bio_list_add(&conf->pending_bio_list, mbio);
1574 conf->pending_count++;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001575 spin_unlock_irqrestore(&conf->device_lock, flags);
1576 if (!mddev_check_plugged(mddev))
1577 md_wakeup_thread(mddev->thread);
NeilBrown57c67df2012-10-11 13:32:13 +11001578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 }
1580
NeilBrown079fa162011-09-10 17:21:23 +10001581 /* Don't remove the bias on 'remaining' (one_write_done) until
1582 * after checking if we need to go around again.
1583 */
NeilBrowna35e63e2008-03-04 14:29:29 -08001584
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08001585 if (sectors_handled < bio_sectors(bio)) {
NeilBrown079fa162011-09-10 17:21:23 +10001586 one_write_done(r10_bio);
NeilBrown5e570282011-07-28 11:39:25 +10001587 /* We need another r10_bio. It has already been counted
NeilBrownd4432c22011-07-28 11:39:24 +10001588 * in bio->bi_phys_segments.
1589 */
1590 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1591
1592 r10_bio->master_bio = bio;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08001593 r10_bio->sectors = bio_sectors(bio) - sectors_handled;
NeilBrownd4432c22011-07-28 11:39:24 +10001594
1595 r10_bio->mddev = mddev;
1596 r10_bio->sector = bio->bi_sector + sectors_handled;
1597 r10_bio->state = 0;
1598 goto retry_write;
1599 }
NeilBrown079fa162011-09-10 17:21:23 +10001600 one_write_done(r10_bio);
1601
1602 /* In case raid10d snuck in to freeze_array */
1603 wake_up(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
1605
NeilBrownfd01b882011-10-11 16:47:53 +11001606static void status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
NeilBrowne879a872011-10-11 16:49:02 +11001608 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 int i;
1610
NeilBrown5cf00fc2012-05-21 09:28:20 +10001611 if (conf->geo.near_copies < conf->geo.raid_disks)
Andre Noll9d8f0362009-06-18 08:45:01 +10001612 seq_printf(seq, " %dK chunks", mddev->chunk_sectors / 2);
NeilBrown5cf00fc2012-05-21 09:28:20 +10001613 if (conf->geo.near_copies > 1)
1614 seq_printf(seq, " %d near-copies", conf->geo.near_copies);
1615 if (conf->geo.far_copies > 1) {
1616 if (conf->geo.far_offset)
1617 seq_printf(seq, " %d offset-copies", conf->geo.far_copies);
NeilBrownc93983b2006-06-26 00:27:41 -07001618 else
NeilBrown5cf00fc2012-05-21 09:28:20 +10001619 seq_printf(seq, " %d far-copies", conf->geo.far_copies);
NeilBrownc93983b2006-06-26 00:27:41 -07001620 }
NeilBrown5cf00fc2012-05-21 09:28:20 +10001621 seq_printf(seq, " [%d/%d] [", conf->geo.raid_disks,
1622 conf->geo.raid_disks - mddev->degraded);
1623 for (i = 0; i < conf->geo.raid_disks; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 seq_printf(seq, "%s",
1625 conf->mirrors[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08001626 test_bit(In_sync, &conf->mirrors[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 seq_printf(seq, "]");
1628}
1629
NeilBrown700c7212011-07-27 11:00:36 +10001630/* check if there are enough drives for
1631 * every block to appear on atleast one.
1632 * Don't consider the device numbered 'ignore'
1633 * as we might be about to remove it.
1634 */
NeilBrownf8c9e742012-05-21 09:28:33 +10001635static int _enough(struct r10conf *conf, struct geom *geo, int ignore)
NeilBrown700c7212011-07-27 11:00:36 +10001636{
1637 int first = 0;
1638
1639 do {
1640 int n = conf->copies;
1641 int cnt = 0;
NeilBrown80b48122012-09-27 12:35:21 +10001642 int this = first;
NeilBrown700c7212011-07-27 11:00:36 +10001643 while (n--) {
NeilBrown80b48122012-09-27 12:35:21 +10001644 if (conf->mirrors[this].rdev &&
1645 this != ignore)
NeilBrown700c7212011-07-27 11:00:36 +10001646 cnt++;
NeilBrown80b48122012-09-27 12:35:21 +10001647 this = (this+1) % geo->raid_disks;
NeilBrown700c7212011-07-27 11:00:36 +10001648 }
1649 if (cnt == 0)
1650 return 0;
NeilBrown80b48122012-09-27 12:35:21 +10001651 first = (first + geo->near_copies) % geo->raid_disks;
NeilBrown700c7212011-07-27 11:00:36 +10001652 } while (first != 0);
1653 return 1;
1654}
1655
NeilBrownf8c9e742012-05-21 09:28:33 +10001656static int enough(struct r10conf *conf, int ignore)
1657{
1658 return _enough(conf, &conf->geo, ignore) &&
1659 _enough(conf, &conf->prev, ignore);
1660}
1661
NeilBrownfd01b882011-10-11 16:47:53 +11001662static void error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
1664 char b[BDEVNAME_SIZE];
NeilBrowne879a872011-10-11 16:49:02 +11001665 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667 /*
1668 * If it is not operational, then we have already marked it as dead
1669 * else if it is the last working disks, ignore the error, let the
1670 * next level up know.
1671 * else mark the drive as failed
1672 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001673 if (test_bit(In_sync, &rdev->flags)
NeilBrown700c7212011-07-27 11:00:36 +10001674 && !enough(conf, rdev->raid_disk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 /*
1676 * Don't fail the drive, just return an IO error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 */
1678 return;
NeilBrownc04be0a2006-10-03 01:15:53 -07001679 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1680 unsigned long flags;
1681 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001683 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 /*
1685 * if recovery is running, make sure it aborts.
1686 */
NeilBrowndfc70642008-05-23 13:04:39 -07001687 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 }
NeilBrownde393cd2011-07-28 11:31:48 +10001689 set_bit(Blocked, &rdev->flags);
NeilBrownb2d444d2005-11-08 21:39:31 -08001690 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -07001691 set_bit(MD_CHANGE_DEVS, &mddev->flags);
Joe Perches067032b2011-01-14 09:14:33 +11001692 printk(KERN_ALERT
1693 "md/raid10:%s: Disk failure on %s, disabling device.\n"
1694 "md/raid10:%s: Operation continuing on %d devices.\n",
NeilBrown128595e2010-05-03 14:47:14 +10001695 mdname(mddev), bdevname(rdev->bdev, b),
NeilBrown5cf00fc2012-05-21 09:28:20 +10001696 mdname(mddev), conf->geo.raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
1698
NeilBrowne879a872011-10-11 16:49:02 +11001699static void print_conf(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
1701 int i;
Jonathan Brassowdc280d982012-07-31 10:03:52 +10001702 struct raid10_info *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
NeilBrown128595e2010-05-03 14:47:14 +10001704 printk(KERN_DEBUG "RAID10 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 if (!conf) {
NeilBrown128595e2010-05-03 14:47:14 +10001706 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 return;
1708 }
NeilBrown5cf00fc2012-05-21 09:28:20 +10001709 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->geo.raid_disks - conf->mddev->degraded,
1710 conf->geo.raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
NeilBrown5cf00fc2012-05-21 09:28:20 +10001712 for (i = 0; i < conf->geo.raid_disks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 char b[BDEVNAME_SIZE];
1714 tmp = conf->mirrors + i;
1715 if (tmp->rdev)
NeilBrown128595e2010-05-03 14:47:14 +10001716 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownb2d444d2005-11-08 21:39:31 -08001717 i, !test_bit(In_sync, &tmp->rdev->flags),
1718 !test_bit(Faulty, &tmp->rdev->flags),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 bdevname(tmp->rdev->bdev,b));
1720 }
1721}
1722
NeilBrowne879a872011-10-11 16:49:02 +11001723static void close_sync(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
NeilBrown0a27ec92006-01-06 00:20:13 -08001725 wait_barrier(conf);
1726 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728 mempool_destroy(conf->r10buf_pool);
1729 conf->r10buf_pool = NULL;
1730}
1731
NeilBrownfd01b882011-10-11 16:47:53 +11001732static int raid10_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733{
1734 int i;
NeilBrowne879a872011-10-11 16:49:02 +11001735 struct r10conf *conf = mddev->private;
Jonathan Brassowdc280d982012-07-31 10:03:52 +10001736 struct raid10_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10001737 int count = 0;
1738 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740 /*
1741 * Find all non-in_sync disks within the RAID10 configuration
1742 * and mark them in_sync
1743 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10001744 for (i = 0; i < conf->geo.raid_disks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 tmp = conf->mirrors + i;
NeilBrown4ca40c22011-12-23 10:17:55 +11001746 if (tmp->replacement
1747 && tmp->replacement->recovery_offset == MaxSector
1748 && !test_bit(Faulty, &tmp->replacement->flags)
1749 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
1750 /* Replacement has just become active */
1751 if (!tmp->rdev
1752 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
1753 count++;
1754 if (tmp->rdev) {
1755 /* Replaced device not technically faulty,
1756 * but we need to be sure it gets removed
1757 * and never re-added.
1758 */
1759 set_bit(Faulty, &tmp->rdev->flags);
1760 sysfs_notify_dirent_safe(
1761 tmp->rdev->sysfs_state);
1762 }
1763 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
1764 } else if (tmp->rdev
1765 && !test_bit(Faulty, &tmp->rdev->flags)
1766 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10001767 count++;
Jonathan Brassow2863b9e2012-10-11 13:38:58 +11001768 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 }
1770 }
NeilBrown6b965622010-08-18 11:56:59 +10001771 spin_lock_irqsave(&conf->device_lock, flags);
1772 mddev->degraded -= count;
1773 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 print_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10001776 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777}
1778
1779
NeilBrownfd01b882011-10-11 16:47:53 +11001780static int raid10_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
NeilBrowne879a872011-10-11 16:49:02 +11001782 struct r10conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001783 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 int mirror;
Neil Brown6c2fce22008-06-28 08:31:31 +10001785 int first = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +10001786 int last = conf->geo.raid_disks - 1;
NeilBrown050b6612012-03-19 12:46:39 +11001787 struct request_queue *q = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 if (mddev->recovery_cp < MaxSector)
1790 /* only hot-add to in-sync arrays, as recovery is
1791 * very different from resync
1792 */
Neil Brown199050e2008-06-28 08:31:33 +10001793 return -EBUSY;
NeilBrownf8c9e742012-05-21 09:28:33 +10001794 if (rdev->saved_raid_disk < 0 && !_enough(conf, &conf->prev, -1))
Neil Brown199050e2008-06-28 08:31:33 +10001795 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
NeilBrowna53a6c82008-11-06 17:28:20 +11001797 if (rdev->raid_disk >= 0)
Neil Brown6c2fce22008-06-28 08:31:31 +10001798 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
NeilBrown050b6612012-03-19 12:46:39 +11001800 if (q->merge_bvec_fn) {
1801 set_bit(Unmerged, &rdev->flags);
1802 mddev->merge_check_needed = 1;
1803 }
1804
Namhyung Kim2c4193d2011-07-18 17:38:43 +10001805 if (rdev->saved_raid_disk >= first &&
NeilBrown6cce3b232006-01-06 00:20:16 -08001806 conf->mirrors[rdev->saved_raid_disk].rdev == NULL)
1807 mirror = rdev->saved_raid_disk;
1808 else
Neil Brown6c2fce22008-06-28 08:31:31 +10001809 mirror = first;
NeilBrown2bb77732011-07-27 11:00:36 +10001810 for ( ; mirror <= last ; mirror++) {
Jonathan Brassowdc280d982012-07-31 10:03:52 +10001811 struct raid10_info *p = &conf->mirrors[mirror];
NeilBrown2bb77732011-07-27 11:00:36 +10001812 if (p->recovery_disabled == mddev->recovery_disabled)
1813 continue;
NeilBrownb7044d42011-12-23 10:17:56 +11001814 if (p->rdev) {
1815 if (!test_bit(WantReplacement, &p->rdev->flags) ||
1816 p->replacement != NULL)
1817 continue;
1818 clear_bit(In_sync, &rdev->flags);
1819 set_bit(Replacement, &rdev->flags);
1820 rdev->raid_disk = mirror;
1821 err = 0;
1822 disk_stack_limits(mddev->gendisk, rdev->bdev,
1823 rdev->data_offset << 9);
NeilBrownb7044d42011-12-23 10:17:56 +11001824 conf->fullsync = 1;
1825 rcu_assign_pointer(p->replacement, rdev);
1826 break;
1827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
NeilBrown2bb77732011-07-27 11:00:36 +10001829 disk_stack_limits(mddev->gendisk, rdev->bdev,
1830 rdev->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
NeilBrown2bb77732011-07-27 11:00:36 +10001832 p->head_position = 0;
NeilBrownd890fa22011-10-26 11:54:39 +11001833 p->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown2bb77732011-07-27 11:00:36 +10001834 rdev->raid_disk = mirror;
1835 err = 0;
1836 if (rdev->saved_raid_disk != mirror)
1837 conf->fullsync = 1;
1838 rcu_assign_pointer(p->rdev, rdev);
1839 break;
1840 }
NeilBrown050b6612012-03-19 12:46:39 +11001841 if (err == 0 && test_bit(Unmerged, &rdev->flags)) {
1842 /* Some requests might not have seen this new
1843 * merge_bvec_fn. We must wait for them to complete
1844 * before merging the device fully.
1845 * First we make sure any code which has tested
1846 * our function has submitted the request, then
1847 * we wait for all outstanding requests to complete.
1848 */
1849 synchronize_sched();
NeilBrowne2d59922013-06-12 11:01:22 +10001850 freeze_array(conf, 0);
1851 unfreeze_array(conf);
NeilBrown050b6612012-03-19 12:46:39 +11001852 clear_bit(Unmerged, &rdev->flags);
1853 }
Andre Nollac5e7112009-08-03 10:59:47 +10001854 md_integrity_add_rdev(rdev, mddev);
Jonathan Brassowed30be02012-10-31 11:42:30 +11001855 if (mddev->queue && blk_queue_discard(bdev_get_queue(rdev->bdev)))
Shaohua Li532a2a32012-10-11 13:30:52 +11001856 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, mddev->queue);
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001859 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
1861
NeilBrownb8321b62011-12-23 10:17:51 +11001862static int raid10_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
NeilBrowne879a872011-10-11 16:49:02 +11001864 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11001866 int number = rdev->raid_disk;
NeilBrownc8ab9032011-12-23 10:17:54 +11001867 struct md_rdev **rdevp;
Jonathan Brassowdc280d982012-07-31 10:03:52 +10001868 struct raid10_info *p = conf->mirrors + number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870 print_conf(conf);
NeilBrownc8ab9032011-12-23 10:17:54 +11001871 if (rdev == p->rdev)
1872 rdevp = &p->rdev;
1873 else if (rdev == p->replacement)
1874 rdevp = &p->replacement;
1875 else
1876 return 0;
1877
1878 if (test_bit(In_sync, &rdev->flags) ||
1879 atomic_read(&rdev->nr_pending)) {
1880 err = -EBUSY;
1881 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
NeilBrownc8ab9032011-12-23 10:17:54 +11001883 /* Only remove faulty devices if recovery
1884 * is not possible.
1885 */
1886 if (!test_bit(Faulty, &rdev->flags) &&
1887 mddev->recovery_disabled != p->recovery_disabled &&
NeilBrown4ca40c22011-12-23 10:17:55 +11001888 (!p->replacement || p->replacement == rdev) &&
NeilBrown63aced62012-05-22 13:55:33 +10001889 number < conf->geo.raid_disks &&
NeilBrownc8ab9032011-12-23 10:17:54 +11001890 enough(conf, -1)) {
1891 err = -EBUSY;
1892 goto abort;
1893 }
1894 *rdevp = NULL;
1895 synchronize_rcu();
1896 if (atomic_read(&rdev->nr_pending)) {
1897 /* lost the race, try later */
1898 err = -EBUSY;
1899 *rdevp = rdev;
1900 goto abort;
NeilBrown4ca40c22011-12-23 10:17:55 +11001901 } else if (p->replacement) {
1902 /* We must have just cleared 'rdev' */
1903 p->rdev = p->replacement;
1904 clear_bit(Replacement, &p->replacement->flags);
1905 smp_mb(); /* Make sure other CPUs may see both as identical
1906 * but will never see neither -- if they are careful.
1907 */
1908 p->replacement = NULL;
1909 clear_bit(WantReplacement, &rdev->flags);
1910 } else
1911 /* We might have just remove the Replacement as faulty
1912 * Clear the flag just in case
1913 */
1914 clear_bit(WantReplacement, &rdev->flags);
1915
NeilBrownc8ab9032011-12-23 10:17:54 +11001916 err = md_integrity_register(mddev);
1917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918abort:
1919
1920 print_conf(conf);
1921 return err;
1922}
1923
1924
NeilBrown6712ecf2007-09-27 12:47:43 +02001925static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
NeilBrown9f2c9d12011-10-11 16:48:43 +11001927 struct r10bio *r10_bio = bio->bi_private;
NeilBrowne879a872011-10-11 16:49:02 +11001928 struct r10conf *conf = r10_bio->mddev->private;
Namhyung Kim778ca012011-07-18 17:38:47 +10001929 int d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
NeilBrown3ea7daa2012-05-22 13:53:47 +10001931 if (bio == r10_bio->master_bio) {
1932 /* this is a reshape read */
1933 d = r10_bio->read_slot; /* really the read dev */
1934 } else
1935 d = find_bio_disk(conf, r10_bio, bio, NULL, NULL);
NeilBrown0eb3ff12006-01-06 00:20:29 -08001936
1937 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
1938 set_bit(R10BIO_Uptodate, &r10_bio->state);
NeilBrowne684e412011-07-28 11:39:25 +10001939 else
1940 /* The write handler will notice the lack of
1941 * R10BIO_Uptodate and record any errors etc
1942 */
NeilBrown4dbcdc72006-01-06 00:20:52 -08001943 atomic_add(r10_bio->sectors,
1944 &conf->mirrors[d].rdev->corrected_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946 /* for reconstruct, we always reschedule after a read.
1947 * for resync, only after all reads
1948 */
NeilBrown73d5c382009-02-25 13:18:47 +11001949 rdev_dec_pending(conf->mirrors[d].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 if (test_bit(R10BIO_IsRecover, &r10_bio->state) ||
1951 atomic_dec_and_test(&r10_bio->remaining)) {
1952 /* we have read all the blocks,
1953 * do the comparison in process context in raid10d
1954 */
1955 reschedule_retry(r10_bio);
1956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957}
1958
NeilBrown9f2c9d12011-10-11 16:48:43 +11001959static void end_sync_request(struct r10bio *r10_bio)
NeilBrown5e570282011-07-28 11:39:25 +10001960{
NeilBrownfd01b882011-10-11 16:47:53 +11001961 struct mddev *mddev = r10_bio->mddev;
NeilBrown5e570282011-07-28 11:39:25 +10001962
1963 while (atomic_dec_and_test(&r10_bio->remaining)) {
1964 if (r10_bio->master_bio == NULL) {
1965 /* the primary of several recovery bios */
1966 sector_t s = r10_bio->sectors;
1967 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
1968 test_bit(R10BIO_WriteError, &r10_bio->state))
1969 reschedule_retry(r10_bio);
1970 else
1971 put_buf(r10_bio);
1972 md_done_sync(mddev, s, 1);
1973 break;
1974 } else {
NeilBrown9f2c9d12011-10-11 16:48:43 +11001975 struct r10bio *r10_bio2 = (struct r10bio *)r10_bio->master_bio;
NeilBrown5e570282011-07-28 11:39:25 +10001976 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
1977 test_bit(R10BIO_WriteError, &r10_bio->state))
1978 reschedule_retry(r10_bio);
1979 else
1980 put_buf(r10_bio);
1981 r10_bio = r10_bio2;
1982 }
1983 }
1984}
1985
NeilBrown6712ecf2007-09-27 12:47:43 +02001986static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987{
1988 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9f2c9d12011-10-11 16:48:43 +11001989 struct r10bio *r10_bio = bio->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11001990 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11001991 struct r10conf *conf = mddev->private;
Namhyung Kim778ca012011-07-18 17:38:47 +10001992 int d;
NeilBrown749c55e2011-07-28 11:39:24 +10001993 sector_t first_bad;
1994 int bad_sectors;
1995 int slot;
NeilBrown9ad1aef2011-12-23 10:17:55 +11001996 int repl;
NeilBrown4ca40c22011-12-23 10:17:55 +11001997 struct md_rdev *rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
NeilBrown9ad1aef2011-12-23 10:17:55 +11001999 d = find_bio_disk(conf, r10_bio, bio, &slot, &repl);
2000 if (repl)
2001 rdev = conf->mirrors[d].replacement;
NeilBrown547414d2012-03-13 11:21:20 +11002002 else
NeilBrown9ad1aef2011-12-23 10:17:55 +11002003 rdev = conf->mirrors[d].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002005 if (!uptodate) {
NeilBrown9ad1aef2011-12-23 10:17:55 +11002006 if (repl)
2007 md_error(mddev, rdev);
2008 else {
2009 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11002010 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2011 set_bit(MD_RECOVERY_NEEDED,
2012 &rdev->mddev->recovery);
NeilBrown9ad1aef2011-12-23 10:17:55 +11002013 set_bit(R10BIO_WriteError, &r10_bio->state);
2014 }
2015 } else if (is_badblock(rdev,
NeilBrown749c55e2011-07-28 11:39:24 +10002016 r10_bio->devs[slot].addr,
2017 r10_bio->sectors,
2018 &first_bad, &bad_sectors))
2019 set_bit(R10BIO_MadeGood, &r10_bio->state);
NeilBrowndfc70642008-05-23 13:04:39 -07002020
NeilBrown9ad1aef2011-12-23 10:17:55 +11002021 rdev_dec_pending(rdev, mddev);
NeilBrown5e570282011-07-28 11:39:25 +10002022
2023 end_sync_request(r10_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
2025
2026/*
2027 * Note: sync and recover and handled very differently for raid10
2028 * This code is for resync.
2029 * For resync, we read through virtual addresses and read all blocks.
2030 * If there is any error, we schedule a write. The lowest numbered
2031 * drive is authoritative.
2032 * However requests come for physical address, so we need to map.
2033 * For every physical address there are raid_disks/copies virtual addresses,
2034 * which is always are least one, but is not necessarly an integer.
2035 * This means that a physical address can span multiple chunks, so we may
2036 * have to submit multiple io requests for a single sync request.
2037 */
2038/*
2039 * We check if all blocks are in-sync and only write to blocks that
2040 * aren't in sync
2041 */
NeilBrown9f2c9d12011-10-11 16:48:43 +11002042static void sync_request_write(struct mddev *mddev, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043{
NeilBrowne879a872011-10-11 16:49:02 +11002044 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 int i, first;
2046 struct bio *tbio, *fbio;
majianpengf4380a92012-04-12 16:04:47 +10002047 int vcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
2049 atomic_set(&r10_bio->remaining, 1);
2050
2051 /* find the first device with a block */
2052 for (i=0; i<conf->copies; i++)
2053 if (test_bit(BIO_UPTODATE, &r10_bio->devs[i].bio->bi_flags))
2054 break;
2055
2056 if (i == conf->copies)
2057 goto done;
2058
2059 first = i;
2060 fbio = r10_bio->devs[i].bio;
2061
majianpengf4380a92012-04-12 16:04:47 +10002062 vcnt = (r10_bio->sectors + (PAGE_SIZE >> 9) - 1) >> (PAGE_SHIFT - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 /* now find blocks with errors */
NeilBrown0eb3ff12006-01-06 00:20:29 -08002064 for (i=0 ; i < conf->copies ; i++) {
2065 int j, d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 tbio = r10_bio->devs[i].bio;
NeilBrown0eb3ff12006-01-06 00:20:29 -08002068
2069 if (tbio->bi_end_io != end_sync_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 continue;
NeilBrown0eb3ff12006-01-06 00:20:29 -08002071 if (i == first)
2072 continue;
2073 if (test_bit(BIO_UPTODATE, &r10_bio->devs[i].bio->bi_flags)) {
2074 /* We know that the bi_io_vec layout is the same for
2075 * both 'first' and 'i', so we just compare them.
2076 * All vec entries are PAGE_SIZE;
2077 */
2078 for (j = 0; j < vcnt; j++)
2079 if (memcmp(page_address(fbio->bi_io_vec[j].bv_page),
2080 page_address(tbio->bi_io_vec[j].bv_page),
NeilBrown5020ad72012-04-02 01:39:05 +10002081 fbio->bi_io_vec[j].bv_len))
NeilBrown0eb3ff12006-01-06 00:20:29 -08002082 break;
2083 if (j == vcnt)
2084 continue;
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11002085 atomic64_add(r10_bio->sectors, &mddev->resync_mismatches);
NeilBrownf84ee362011-07-28 11:39:25 +10002086 if (test_bit(MD_RECOVERY_CHECK, &mddev->recovery))
2087 /* Don't fix anything. */
2088 continue;
NeilBrown0eb3ff12006-01-06 00:20:29 -08002089 }
NeilBrownf84ee362011-07-28 11:39:25 +10002090 /* Ok, we need to write this bio, either to correct an
2091 * inconsistency or to correct an unreadable block.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 * First we need to fixup bv_offset, bv_len and
2093 * bi_vecs, as the read request might have corrupted these
2094 */
Kent Overstreet8be185f2012-09-06 14:14:43 -07002095 bio_reset(tbio);
2096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 tbio->bi_vcnt = vcnt;
2098 tbio->bi_size = r10_bio->sectors << 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 tbio->bi_rw = WRITE;
2100 tbio->bi_private = r10_bio;
2101 tbio->bi_sector = r10_bio->devs[i].addr;
2102
2103 for (j=0; j < vcnt ; j++) {
2104 tbio->bi_io_vec[j].bv_offset = 0;
2105 tbio->bi_io_vec[j].bv_len = PAGE_SIZE;
2106
2107 memcpy(page_address(tbio->bi_io_vec[j].bv_page),
2108 page_address(fbio->bi_io_vec[j].bv_page),
2109 PAGE_SIZE);
2110 }
2111 tbio->bi_end_io = end_sync_write;
2112
2113 d = r10_bio->devs[i].devnum;
2114 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
2115 atomic_inc(&r10_bio->remaining);
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08002116 md_sync_acct(conf->mirrors[d].rdev->bdev, bio_sectors(tbio));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 tbio->bi_sector += conf->mirrors[d].rdev->data_offset;
2119 tbio->bi_bdev = conf->mirrors[d].rdev->bdev;
2120 generic_make_request(tbio);
2121 }
2122
NeilBrown9ad1aef2011-12-23 10:17:55 +11002123 /* Now write out to any replacement devices
2124 * that are active
2125 */
2126 for (i = 0; i < conf->copies; i++) {
2127 int j, d;
NeilBrown9ad1aef2011-12-23 10:17:55 +11002128
2129 tbio = r10_bio->devs[i].repl_bio;
2130 if (!tbio || !tbio->bi_end_io)
2131 continue;
2132 if (r10_bio->devs[i].bio->bi_end_io != end_sync_write
2133 && r10_bio->devs[i].bio != fbio)
2134 for (j = 0; j < vcnt; j++)
2135 memcpy(page_address(tbio->bi_io_vec[j].bv_page),
2136 page_address(fbio->bi_io_vec[j].bv_page),
2137 PAGE_SIZE);
2138 d = r10_bio->devs[i].devnum;
2139 atomic_inc(&r10_bio->remaining);
2140 md_sync_acct(conf->mirrors[d].replacement->bdev,
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08002141 bio_sectors(tbio));
NeilBrown9ad1aef2011-12-23 10:17:55 +11002142 generic_make_request(tbio);
2143 }
2144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145done:
2146 if (atomic_dec_and_test(&r10_bio->remaining)) {
2147 md_done_sync(mddev, r10_bio->sectors, 1);
2148 put_buf(r10_bio);
2149 }
2150}
2151
2152/*
2153 * Now for the recovery code.
2154 * Recovery happens across physical sectors.
2155 * We recover all non-is_sync drives by finding the virtual address of
2156 * each, and then choose a working drive that also has that virt address.
2157 * There is a separate r10_bio for each non-in_sync drive.
2158 * Only the first two slots are in use. The first for reading,
2159 * The second for writing.
2160 *
2161 */
NeilBrown9f2c9d12011-10-11 16:48:43 +11002162static void fix_recovery_read_error(struct r10bio *r10_bio)
NeilBrown5e570282011-07-28 11:39:25 +10002163{
2164 /* We got a read error during recovery.
2165 * We repeat the read in smaller page-sized sections.
2166 * If a read succeeds, write it to the new device or record
2167 * a bad block if we cannot.
2168 * If a read fails, record a bad block on both old and
2169 * new devices.
2170 */
NeilBrownfd01b882011-10-11 16:47:53 +11002171 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11002172 struct r10conf *conf = mddev->private;
NeilBrown5e570282011-07-28 11:39:25 +10002173 struct bio *bio = r10_bio->devs[0].bio;
2174 sector_t sect = 0;
2175 int sectors = r10_bio->sectors;
2176 int idx = 0;
2177 int dr = r10_bio->devs[0].devnum;
2178 int dw = r10_bio->devs[1].devnum;
2179
2180 while (sectors) {
2181 int s = sectors;
NeilBrown3cb03002011-10-11 16:45:26 +11002182 struct md_rdev *rdev;
NeilBrown5e570282011-07-28 11:39:25 +10002183 sector_t addr;
2184 int ok;
2185
2186 if (s > (PAGE_SIZE>>9))
2187 s = PAGE_SIZE >> 9;
2188
2189 rdev = conf->mirrors[dr].rdev;
2190 addr = r10_bio->devs[0].addr + sect,
2191 ok = sync_page_io(rdev,
2192 addr,
2193 s << 9,
2194 bio->bi_io_vec[idx].bv_page,
2195 READ, false);
2196 if (ok) {
2197 rdev = conf->mirrors[dw].rdev;
2198 addr = r10_bio->devs[1].addr + sect;
2199 ok = sync_page_io(rdev,
2200 addr,
2201 s << 9,
2202 bio->bi_io_vec[idx].bv_page,
2203 WRITE, false);
NeilBrownb7044d42011-12-23 10:17:56 +11002204 if (!ok) {
NeilBrown5e570282011-07-28 11:39:25 +10002205 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11002206 if (!test_and_set_bit(WantReplacement,
2207 &rdev->flags))
2208 set_bit(MD_RECOVERY_NEEDED,
2209 &rdev->mddev->recovery);
2210 }
NeilBrown5e570282011-07-28 11:39:25 +10002211 }
2212 if (!ok) {
2213 /* We don't worry if we cannot set a bad block -
2214 * it really is bad so there is no loss in not
2215 * recording it yet
2216 */
2217 rdev_set_badblocks(rdev, addr, s, 0);
2218
2219 if (rdev != conf->mirrors[dw].rdev) {
2220 /* need bad block on destination too */
NeilBrown3cb03002011-10-11 16:45:26 +11002221 struct md_rdev *rdev2 = conf->mirrors[dw].rdev;
NeilBrown5e570282011-07-28 11:39:25 +10002222 addr = r10_bio->devs[1].addr + sect;
2223 ok = rdev_set_badblocks(rdev2, addr, s, 0);
2224 if (!ok) {
2225 /* just abort the recovery */
2226 printk(KERN_NOTICE
2227 "md/raid10:%s: recovery aborted"
2228 " due to read error\n",
2229 mdname(mddev));
2230
2231 conf->mirrors[dw].recovery_disabled
2232 = mddev->recovery_disabled;
2233 set_bit(MD_RECOVERY_INTR,
2234 &mddev->recovery);
2235 break;
2236 }
2237 }
2238 }
2239
2240 sectors -= s;
2241 sect += s;
2242 idx++;
2243 }
2244}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
NeilBrown9f2c9d12011-10-11 16:48:43 +11002246static void recovery_request_write(struct mddev *mddev, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
NeilBrowne879a872011-10-11 16:49:02 +11002248 struct r10conf *conf = mddev->private;
Namhyung Kimc65060a2011-07-18 17:38:49 +10002249 int d;
NeilBrown24afd802011-12-23 10:17:55 +11002250 struct bio *wbio, *wbio2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
NeilBrown5e570282011-07-28 11:39:25 +10002252 if (!test_bit(R10BIO_Uptodate, &r10_bio->state)) {
2253 fix_recovery_read_error(r10_bio);
2254 end_sync_request(r10_bio);
2255 return;
2256 }
2257
Namhyung Kimc65060a2011-07-18 17:38:49 +10002258 /*
2259 * share the pages with the first bio
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 * and submit the write request
2261 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 d = r10_bio->devs[1].devnum;
NeilBrown24afd802011-12-23 10:17:55 +11002263 wbio = r10_bio->devs[1].bio;
2264 wbio2 = r10_bio->devs[1].repl_bio;
2265 if (wbio->bi_end_io) {
2266 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08002267 md_sync_acct(conf->mirrors[d].rdev->bdev, bio_sectors(wbio));
NeilBrown24afd802011-12-23 10:17:55 +11002268 generic_make_request(wbio);
2269 }
2270 if (wbio2 && wbio2->bi_end_io) {
2271 atomic_inc(&conf->mirrors[d].replacement->nr_pending);
2272 md_sync_acct(conf->mirrors[d].replacement->bdev,
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08002273 bio_sectors(wbio2));
NeilBrown24afd802011-12-23 10:17:55 +11002274 generic_make_request(wbio2);
2275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276}
2277
2278
2279/*
Robert Becker1e509152009-12-14 12:49:58 +11002280 * Used by fix_read_error() to decay the per rdev read_errors.
2281 * We halve the read error count for every hour that has elapsed
2282 * since the last recorded read error.
2283 *
2284 */
NeilBrownfd01b882011-10-11 16:47:53 +11002285static void check_decay_read_errors(struct mddev *mddev, struct md_rdev *rdev)
Robert Becker1e509152009-12-14 12:49:58 +11002286{
2287 struct timespec cur_time_mon;
2288 unsigned long hours_since_last;
2289 unsigned int read_errors = atomic_read(&rdev->read_errors);
2290
2291 ktime_get_ts(&cur_time_mon);
2292
2293 if (rdev->last_read_error.tv_sec == 0 &&
2294 rdev->last_read_error.tv_nsec == 0) {
2295 /* first time we've seen a read error */
2296 rdev->last_read_error = cur_time_mon;
2297 return;
2298 }
2299
2300 hours_since_last = (cur_time_mon.tv_sec -
2301 rdev->last_read_error.tv_sec) / 3600;
2302
2303 rdev->last_read_error = cur_time_mon;
2304
2305 /*
2306 * if hours_since_last is > the number of bits in read_errors
2307 * just set read errors to 0. We do this to avoid
2308 * overflowing the shift of read_errors by hours_since_last.
2309 */
2310 if (hours_since_last >= 8 * sizeof(read_errors))
2311 atomic_set(&rdev->read_errors, 0);
2312 else
2313 atomic_set(&rdev->read_errors, read_errors >> hours_since_last);
2314}
2315
NeilBrown3cb03002011-10-11 16:45:26 +11002316static int r10_sync_page_io(struct md_rdev *rdev, sector_t sector,
NeilBrown58c54fc2011-07-28 11:39:25 +10002317 int sectors, struct page *page, int rw)
2318{
2319 sector_t first_bad;
2320 int bad_sectors;
2321
2322 if (is_badblock(rdev, sector, sectors, &first_bad, &bad_sectors)
2323 && (rw == READ || test_bit(WriteErrorSeen, &rdev->flags)))
2324 return -1;
2325 if (sync_page_io(rdev, sector, sectors << 9, page, rw, false))
2326 /* success */
2327 return 1;
NeilBrownb7044d42011-12-23 10:17:56 +11002328 if (rw == WRITE) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002329 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11002330 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2331 set_bit(MD_RECOVERY_NEEDED,
2332 &rdev->mddev->recovery);
2333 }
NeilBrown58c54fc2011-07-28 11:39:25 +10002334 /* need to record an error - either for the block or the device */
2335 if (!rdev_set_badblocks(rdev, sector, sectors, 0))
2336 md_error(rdev->mddev, rdev);
2337 return 0;
2338}
2339
Robert Becker1e509152009-12-14 12:49:58 +11002340/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 * This is a kernel thread which:
2342 *
2343 * 1. Retries failed read operations on working mirrors.
2344 * 2. Updates the raid superblock when problems encounter.
NeilBrown6814d532006-10-03 01:15:45 -07002345 * 3. Performs writes following reads for array synchronising.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 */
2347
NeilBrowne879a872011-10-11 16:49:02 +11002348static void fix_read_error(struct r10conf *conf, struct mddev *mddev, struct r10bio *r10_bio)
NeilBrown6814d532006-10-03 01:15:45 -07002349{
2350 int sect = 0; /* Offset from r10_bio->sector */
2351 int sectors = r10_bio->sectors;
NeilBrown3cb03002011-10-11 16:45:26 +11002352 struct md_rdev*rdev;
Robert Becker1e509152009-12-14 12:49:58 +11002353 int max_read_errors = atomic_read(&mddev->max_corr_read_errors);
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002354 int d = r10_bio->devs[r10_bio->read_slot].devnum;
Robert Becker1e509152009-12-14 12:49:58 +11002355
NeilBrown7c4e06f2011-05-11 14:53:17 +10002356 /* still own a reference to this rdev, so it cannot
2357 * have been cleared recently.
2358 */
2359 rdev = conf->mirrors[d].rdev;
Robert Becker1e509152009-12-14 12:49:58 +11002360
NeilBrown7c4e06f2011-05-11 14:53:17 +10002361 if (test_bit(Faulty, &rdev->flags))
2362 /* drive has already been failed, just ignore any
2363 more fix_read_error() attempts */
2364 return;
2365
2366 check_decay_read_errors(mddev, rdev);
2367 atomic_inc(&rdev->read_errors);
2368 if (atomic_read(&rdev->read_errors) > max_read_errors) {
2369 char b[BDEVNAME_SIZE];
Robert Becker1e509152009-12-14 12:49:58 +11002370 bdevname(rdev->bdev, b);
2371
NeilBrown7c4e06f2011-05-11 14:53:17 +10002372 printk(KERN_NOTICE
2373 "md/raid10:%s: %s: Raid device exceeded "
2374 "read_error threshold [cur %d:max %d]\n",
2375 mdname(mddev), b,
2376 atomic_read(&rdev->read_errors), max_read_errors);
2377 printk(KERN_NOTICE
2378 "md/raid10:%s: %s: Failing raid device\n",
2379 mdname(mddev), b);
2380 md_error(mddev, conf->mirrors[d].rdev);
NeilBrownfae8cc52012-02-14 11:10:10 +11002381 r10_bio->devs[r10_bio->read_slot].bio = IO_BLOCKED;
NeilBrown7c4e06f2011-05-11 14:53:17 +10002382 return;
Robert Becker1e509152009-12-14 12:49:58 +11002383 }
Robert Becker1e509152009-12-14 12:49:58 +11002384
NeilBrown6814d532006-10-03 01:15:45 -07002385 while(sectors) {
2386 int s = sectors;
2387 int sl = r10_bio->read_slot;
2388 int success = 0;
2389 int start;
2390
2391 if (s > (PAGE_SIZE>>9))
2392 s = PAGE_SIZE >> 9;
2393
2394 rcu_read_lock();
2395 do {
NeilBrown8dbed5c2011-07-28 11:39:24 +10002396 sector_t first_bad;
2397 int bad_sectors;
2398
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002399 d = r10_bio->devs[sl].devnum;
NeilBrown6814d532006-10-03 01:15:45 -07002400 rdev = rcu_dereference(conf->mirrors[d].rdev);
2401 if (rdev &&
NeilBrown050b6612012-03-19 12:46:39 +11002402 !test_bit(Unmerged, &rdev->flags) &&
NeilBrown8dbed5c2011-07-28 11:39:24 +10002403 test_bit(In_sync, &rdev->flags) &&
2404 is_badblock(rdev, r10_bio->devs[sl].addr + sect, s,
2405 &first_bad, &bad_sectors) == 0) {
NeilBrown6814d532006-10-03 01:15:45 -07002406 atomic_inc(&rdev->nr_pending);
2407 rcu_read_unlock();
NeilBrown2b193362010-10-27 15:16:40 +11002408 success = sync_page_io(rdev,
NeilBrown6814d532006-10-03 01:15:45 -07002409 r10_bio->devs[sl].addr +
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11002410 sect,
NeilBrown6814d532006-10-03 01:15:45 -07002411 s<<9,
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11002412 conf->tmppage, READ, false);
NeilBrown6814d532006-10-03 01:15:45 -07002413 rdev_dec_pending(rdev, mddev);
2414 rcu_read_lock();
2415 if (success)
2416 break;
2417 }
2418 sl++;
2419 if (sl == conf->copies)
2420 sl = 0;
2421 } while (!success && sl != r10_bio->read_slot);
2422 rcu_read_unlock();
2423
2424 if (!success) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002425 /* Cannot read from anywhere, just mark the block
2426 * as bad on the first device to discourage future
2427 * reads.
2428 */
NeilBrown6814d532006-10-03 01:15:45 -07002429 int dn = r10_bio->devs[r10_bio->read_slot].devnum;
NeilBrown58c54fc2011-07-28 11:39:25 +10002430 rdev = conf->mirrors[dn].rdev;
2431
2432 if (!rdev_set_badblocks(
2433 rdev,
2434 r10_bio->devs[r10_bio->read_slot].addr
2435 + sect,
NeilBrownfae8cc52012-02-14 11:10:10 +11002436 s, 0)) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002437 md_error(mddev, rdev);
NeilBrownfae8cc52012-02-14 11:10:10 +11002438 r10_bio->devs[r10_bio->read_slot].bio
2439 = IO_BLOCKED;
2440 }
NeilBrown6814d532006-10-03 01:15:45 -07002441 break;
2442 }
2443
2444 start = sl;
2445 /* write it back and re-read */
2446 rcu_read_lock();
2447 while (sl != r10_bio->read_slot) {
Robert Becker67b8dc42009-12-14 12:49:57 +11002448 char b[BDEVNAME_SIZE];
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002449
NeilBrown6814d532006-10-03 01:15:45 -07002450 if (sl==0)
2451 sl = conf->copies;
2452 sl--;
2453 d = r10_bio->devs[sl].devnum;
2454 rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown1294b9c2011-07-28 11:39:23 +10002455 if (!rdev ||
NeilBrown050b6612012-03-19 12:46:39 +11002456 test_bit(Unmerged, &rdev->flags) ||
NeilBrown1294b9c2011-07-28 11:39:23 +10002457 !test_bit(In_sync, &rdev->flags))
2458 continue;
2459
2460 atomic_inc(&rdev->nr_pending);
2461 rcu_read_unlock();
NeilBrown58c54fc2011-07-28 11:39:25 +10002462 if (r10_sync_page_io(rdev,
2463 r10_bio->devs[sl].addr +
2464 sect,
NeilBrown055d3742012-07-03 15:55:33 +10002465 s, conf->tmppage, WRITE)
NeilBrown1294b9c2011-07-28 11:39:23 +10002466 == 0) {
2467 /* Well, this device is dead */
2468 printk(KERN_NOTICE
2469 "md/raid10:%s: read correction "
2470 "write failed"
2471 " (%d sectors at %llu on %s)\n",
2472 mdname(mddev), s,
2473 (unsigned long long)(
NeilBrownf8c9e742012-05-21 09:28:33 +10002474 sect +
2475 choose_data_offset(r10_bio,
2476 rdev)),
NeilBrown1294b9c2011-07-28 11:39:23 +10002477 bdevname(rdev->bdev, b));
2478 printk(KERN_NOTICE "md/raid10:%s: %s: failing "
2479 "drive\n",
2480 mdname(mddev),
2481 bdevname(rdev->bdev, b));
NeilBrown6814d532006-10-03 01:15:45 -07002482 }
NeilBrown1294b9c2011-07-28 11:39:23 +10002483 rdev_dec_pending(rdev, mddev);
2484 rcu_read_lock();
NeilBrown6814d532006-10-03 01:15:45 -07002485 }
2486 sl = start;
2487 while (sl != r10_bio->read_slot) {
NeilBrown1294b9c2011-07-28 11:39:23 +10002488 char b[BDEVNAME_SIZE];
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002489
NeilBrown6814d532006-10-03 01:15:45 -07002490 if (sl==0)
2491 sl = conf->copies;
2492 sl--;
2493 d = r10_bio->devs[sl].devnum;
2494 rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown1294b9c2011-07-28 11:39:23 +10002495 if (!rdev ||
2496 !test_bit(In_sync, &rdev->flags))
2497 continue;
Robert Becker67b8dc42009-12-14 12:49:57 +11002498
NeilBrown1294b9c2011-07-28 11:39:23 +10002499 atomic_inc(&rdev->nr_pending);
2500 rcu_read_unlock();
NeilBrown58c54fc2011-07-28 11:39:25 +10002501 switch (r10_sync_page_io(rdev,
2502 r10_bio->devs[sl].addr +
2503 sect,
NeilBrown055d3742012-07-03 15:55:33 +10002504 s, conf->tmppage,
NeilBrown58c54fc2011-07-28 11:39:25 +10002505 READ)) {
2506 case 0:
NeilBrown1294b9c2011-07-28 11:39:23 +10002507 /* Well, this device is dead */
2508 printk(KERN_NOTICE
2509 "md/raid10:%s: unable to read back "
2510 "corrected sectors"
2511 " (%d sectors at %llu on %s)\n",
2512 mdname(mddev), s,
2513 (unsigned long long)(
NeilBrownf8c9e742012-05-21 09:28:33 +10002514 sect +
2515 choose_data_offset(r10_bio, rdev)),
NeilBrown1294b9c2011-07-28 11:39:23 +10002516 bdevname(rdev->bdev, b));
2517 printk(KERN_NOTICE "md/raid10:%s: %s: failing "
2518 "drive\n",
2519 mdname(mddev),
2520 bdevname(rdev->bdev, b));
NeilBrown58c54fc2011-07-28 11:39:25 +10002521 break;
2522 case 1:
NeilBrown1294b9c2011-07-28 11:39:23 +10002523 printk(KERN_INFO
2524 "md/raid10:%s: read error corrected"
2525 " (%d sectors at %llu on %s)\n",
2526 mdname(mddev), s,
2527 (unsigned long long)(
NeilBrownf8c9e742012-05-21 09:28:33 +10002528 sect +
2529 choose_data_offset(r10_bio, rdev)),
NeilBrown1294b9c2011-07-28 11:39:23 +10002530 bdevname(rdev->bdev, b));
2531 atomic_add(s, &rdev->corrected_errors);
NeilBrown6814d532006-10-03 01:15:45 -07002532 }
NeilBrown1294b9c2011-07-28 11:39:23 +10002533
2534 rdev_dec_pending(rdev, mddev);
2535 rcu_read_lock();
NeilBrown6814d532006-10-03 01:15:45 -07002536 }
2537 rcu_read_unlock();
2538
2539 sectors -= s;
2540 sect += s;
2541 }
2542}
2543
NeilBrown9f2c9d12011-10-11 16:48:43 +11002544static int narrow_write_error(struct r10bio *r10_bio, int i)
NeilBrownbd870a12011-07-28 11:39:24 +10002545{
2546 struct bio *bio = r10_bio->master_bio;
NeilBrownfd01b882011-10-11 16:47:53 +11002547 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11002548 struct r10conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11002549 struct md_rdev *rdev = conf->mirrors[r10_bio->devs[i].devnum].rdev;
NeilBrownbd870a12011-07-28 11:39:24 +10002550 /* bio has the data to be written to slot 'i' where
2551 * we just recently had a write error.
2552 * We repeatedly clone the bio and trim down to one block,
2553 * then try the write. Where the write fails we record
2554 * a bad block.
2555 * It is conceivable that the bio doesn't exactly align with
2556 * blocks. We must handle this.
2557 *
2558 * We currently own a reference to the rdev.
2559 */
2560
2561 int block_sectors;
2562 sector_t sector;
2563 int sectors;
2564 int sect_to_write = r10_bio->sectors;
2565 int ok = 1;
2566
2567 if (rdev->badblocks.shift < 0)
2568 return 0;
2569
2570 block_sectors = 1 << rdev->badblocks.shift;
2571 sector = r10_bio->sector;
2572 sectors = ((r10_bio->sector + block_sectors)
2573 & ~(sector_t)(block_sectors - 1))
2574 - sector;
2575
2576 while (sect_to_write) {
2577 struct bio *wbio;
2578 if (sectors > sect_to_write)
2579 sectors = sect_to_write;
2580 /* Write at 'sector' for 'sectors' */
2581 wbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
2582 md_trim_bio(wbio, sector - bio->bi_sector, sectors);
2583 wbio->bi_sector = (r10_bio->devs[i].addr+
NeilBrownf8c9e742012-05-21 09:28:33 +10002584 choose_data_offset(r10_bio, rdev) +
NeilBrownbd870a12011-07-28 11:39:24 +10002585 (sector - r10_bio->sector));
2586 wbio->bi_bdev = rdev->bdev;
2587 if (submit_bio_wait(WRITE, wbio) == 0)
2588 /* Failure! */
2589 ok = rdev_set_badblocks(rdev, sector,
2590 sectors, 0)
2591 && ok;
2592
2593 bio_put(wbio);
2594 sect_to_write -= sectors;
2595 sector += sectors;
2596 sectors = block_sectors;
2597 }
2598 return ok;
2599}
2600
NeilBrown9f2c9d12011-10-11 16:48:43 +11002601static void handle_read_error(struct mddev *mddev, struct r10bio *r10_bio)
NeilBrown560f8e52011-07-28 11:39:23 +10002602{
2603 int slot = r10_bio->read_slot;
NeilBrown560f8e52011-07-28 11:39:23 +10002604 struct bio *bio;
NeilBrowne879a872011-10-11 16:49:02 +11002605 struct r10conf *conf = mddev->private;
NeilBrownabbf0982011-12-23 10:17:54 +11002606 struct md_rdev *rdev = r10_bio->devs[slot].rdev;
NeilBrown560f8e52011-07-28 11:39:23 +10002607 char b[BDEVNAME_SIZE];
2608 unsigned long do_sync;
NeilBrown856e08e2011-07-28 11:39:23 +10002609 int max_sectors;
NeilBrown560f8e52011-07-28 11:39:23 +10002610
2611 /* we got a read error. Maybe the drive is bad. Maybe just
2612 * the block and we can fix it.
2613 * We freeze all other IO, and try reading the block from
2614 * other devices. When we find one, we re-write
2615 * and check it that fixes the read error.
2616 * This is all done synchronously while the array is
2617 * frozen.
2618 */
NeilBrownfae8cc52012-02-14 11:10:10 +11002619 bio = r10_bio->devs[slot].bio;
2620 bdevname(bio->bi_bdev, b);
2621 bio_put(bio);
2622 r10_bio->devs[slot].bio = NULL;
2623
NeilBrown560f8e52011-07-28 11:39:23 +10002624 if (mddev->ro == 0) {
NeilBrowne2d59922013-06-12 11:01:22 +10002625 freeze_array(conf, 1);
NeilBrown560f8e52011-07-28 11:39:23 +10002626 fix_read_error(conf, mddev, r10_bio);
2627 unfreeze_array(conf);
NeilBrownfae8cc52012-02-14 11:10:10 +11002628 } else
2629 r10_bio->devs[slot].bio = IO_BLOCKED;
2630
NeilBrownabbf0982011-12-23 10:17:54 +11002631 rdev_dec_pending(rdev, mddev);
NeilBrown560f8e52011-07-28 11:39:23 +10002632
NeilBrown7399c312011-07-28 11:39:23 +10002633read_more:
NeilBrown96c3fd12011-12-23 10:17:54 +11002634 rdev = read_balance(conf, r10_bio, &max_sectors);
2635 if (rdev == NULL) {
NeilBrown560f8e52011-07-28 11:39:23 +10002636 printk(KERN_ALERT "md/raid10:%s: %s: unrecoverable I/O"
2637 " read error for block %llu\n",
NeilBrown7399c312011-07-28 11:39:23 +10002638 mdname(mddev), b,
NeilBrown560f8e52011-07-28 11:39:23 +10002639 (unsigned long long)r10_bio->sector);
2640 raid_end_bio_io(r10_bio);
NeilBrown560f8e52011-07-28 11:39:23 +10002641 return;
2642 }
2643
2644 do_sync = (r10_bio->master_bio->bi_rw & REQ_SYNC);
NeilBrown560f8e52011-07-28 11:39:23 +10002645 slot = r10_bio->read_slot;
NeilBrown560f8e52011-07-28 11:39:23 +10002646 printk_ratelimited(
2647 KERN_ERR
NeilBrown055d3742012-07-03 15:55:33 +10002648 "md/raid10:%s: %s: redirecting "
NeilBrown560f8e52011-07-28 11:39:23 +10002649 "sector %llu to another mirror\n",
2650 mdname(mddev),
2651 bdevname(rdev->bdev, b),
2652 (unsigned long long)r10_bio->sector);
2653 bio = bio_clone_mddev(r10_bio->master_bio,
2654 GFP_NOIO, mddev);
NeilBrown7399c312011-07-28 11:39:23 +10002655 md_trim_bio(bio,
2656 r10_bio->sector - bio->bi_sector,
2657 max_sectors);
NeilBrown560f8e52011-07-28 11:39:23 +10002658 r10_bio->devs[slot].bio = bio;
NeilBrownabbf0982011-12-23 10:17:54 +11002659 r10_bio->devs[slot].rdev = rdev;
NeilBrown560f8e52011-07-28 11:39:23 +10002660 bio->bi_sector = r10_bio->devs[slot].addr
NeilBrownf8c9e742012-05-21 09:28:33 +10002661 + choose_data_offset(r10_bio, rdev);
NeilBrown560f8e52011-07-28 11:39:23 +10002662 bio->bi_bdev = rdev->bdev;
2663 bio->bi_rw = READ | do_sync;
2664 bio->bi_private = r10_bio;
2665 bio->bi_end_io = raid10_end_read_request;
NeilBrown7399c312011-07-28 11:39:23 +10002666 if (max_sectors < r10_bio->sectors) {
2667 /* Drat - have to split this up more */
2668 struct bio *mbio = r10_bio->master_bio;
2669 int sectors_handled =
2670 r10_bio->sector + max_sectors
2671 - mbio->bi_sector;
2672 r10_bio->sectors = max_sectors;
2673 spin_lock_irq(&conf->device_lock);
2674 if (mbio->bi_phys_segments == 0)
2675 mbio->bi_phys_segments = 2;
2676 else
2677 mbio->bi_phys_segments++;
2678 spin_unlock_irq(&conf->device_lock);
2679 generic_make_request(bio);
NeilBrown7399c312011-07-28 11:39:23 +10002680
2681 r10_bio = mempool_alloc(conf->r10bio_pool,
2682 GFP_NOIO);
2683 r10_bio->master_bio = mbio;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08002684 r10_bio->sectors = bio_sectors(mbio) - sectors_handled;
NeilBrown7399c312011-07-28 11:39:23 +10002685 r10_bio->state = 0;
2686 set_bit(R10BIO_ReadError,
2687 &r10_bio->state);
2688 r10_bio->mddev = mddev;
2689 r10_bio->sector = mbio->bi_sector
2690 + sectors_handled;
2691
2692 goto read_more;
2693 } else
2694 generic_make_request(bio);
NeilBrown560f8e52011-07-28 11:39:23 +10002695}
2696
NeilBrowne879a872011-10-11 16:49:02 +11002697static void handle_write_completed(struct r10conf *conf, struct r10bio *r10_bio)
NeilBrown749c55e2011-07-28 11:39:24 +10002698{
2699 /* Some sort of write request has finished and it
2700 * succeeded in writing where we thought there was a
2701 * bad block. So forget the bad block.
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002702 * Or possibly if failed and we need to record
2703 * a bad block.
NeilBrown749c55e2011-07-28 11:39:24 +10002704 */
2705 int m;
NeilBrown3cb03002011-10-11 16:45:26 +11002706 struct md_rdev *rdev;
NeilBrown749c55e2011-07-28 11:39:24 +10002707
2708 if (test_bit(R10BIO_IsSync, &r10_bio->state) ||
2709 test_bit(R10BIO_IsRecover, &r10_bio->state)) {
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002710 for (m = 0; m < conf->copies; m++) {
2711 int dev = r10_bio->devs[m].devnum;
2712 rdev = conf->mirrors[dev].rdev;
2713 if (r10_bio->devs[m].bio == NULL)
2714 continue;
2715 if (test_bit(BIO_UPTODATE,
NeilBrown749c55e2011-07-28 11:39:24 +10002716 &r10_bio->devs[m].bio->bi_flags)) {
NeilBrown749c55e2011-07-28 11:39:24 +10002717 rdev_clear_badblocks(
2718 rdev,
2719 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002720 r10_bio->sectors, 0);
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002721 } else {
2722 if (!rdev_set_badblocks(
2723 rdev,
2724 r10_bio->devs[m].addr,
2725 r10_bio->sectors, 0))
2726 md_error(conf->mddev, rdev);
NeilBrown749c55e2011-07-28 11:39:24 +10002727 }
NeilBrown9ad1aef2011-12-23 10:17:55 +11002728 rdev = conf->mirrors[dev].replacement;
2729 if (r10_bio->devs[m].repl_bio == NULL)
2730 continue;
2731 if (test_bit(BIO_UPTODATE,
2732 &r10_bio->devs[m].repl_bio->bi_flags)) {
2733 rdev_clear_badblocks(
2734 rdev,
2735 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002736 r10_bio->sectors, 0);
NeilBrown9ad1aef2011-12-23 10:17:55 +11002737 } else {
2738 if (!rdev_set_badblocks(
2739 rdev,
2740 r10_bio->devs[m].addr,
2741 r10_bio->sectors, 0))
2742 md_error(conf->mddev, rdev);
2743 }
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002744 }
NeilBrown749c55e2011-07-28 11:39:24 +10002745 put_buf(r10_bio);
2746 } else {
NeilBrownbd870a12011-07-28 11:39:24 +10002747 for (m = 0; m < conf->copies; m++) {
2748 int dev = r10_bio->devs[m].devnum;
2749 struct bio *bio = r10_bio->devs[m].bio;
2750 rdev = conf->mirrors[dev].rdev;
2751 if (bio == IO_MADE_GOOD) {
NeilBrown749c55e2011-07-28 11:39:24 +10002752 rdev_clear_badblocks(
2753 rdev,
2754 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002755 r10_bio->sectors, 0);
NeilBrown749c55e2011-07-28 11:39:24 +10002756 rdev_dec_pending(rdev, conf->mddev);
NeilBrownbd870a12011-07-28 11:39:24 +10002757 } else if (bio != NULL &&
2758 !test_bit(BIO_UPTODATE, &bio->bi_flags)) {
2759 if (!narrow_write_error(r10_bio, m)) {
2760 md_error(conf->mddev, rdev);
2761 set_bit(R10BIO_Degraded,
2762 &r10_bio->state);
2763 }
2764 rdev_dec_pending(rdev, conf->mddev);
NeilBrown749c55e2011-07-28 11:39:24 +10002765 }
NeilBrown475b0322011-12-23 10:17:55 +11002766 bio = r10_bio->devs[m].repl_bio;
2767 rdev = conf->mirrors[dev].replacement;
NeilBrown4ca40c22011-12-23 10:17:55 +11002768 if (rdev && bio == IO_MADE_GOOD) {
NeilBrown475b0322011-12-23 10:17:55 +11002769 rdev_clear_badblocks(
2770 rdev,
2771 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002772 r10_bio->sectors, 0);
NeilBrown475b0322011-12-23 10:17:55 +11002773 rdev_dec_pending(rdev, conf->mddev);
2774 }
NeilBrownbd870a12011-07-28 11:39:24 +10002775 }
2776 if (test_bit(R10BIO_WriteError,
2777 &r10_bio->state))
2778 close_write(r10_bio);
NeilBrown749c55e2011-07-28 11:39:24 +10002779 raid_end_bio_io(r10_bio);
2780 }
2781}
2782
Shaohua Li4ed87312012-10-11 13:34:00 +11002783static void raid10d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784{
Shaohua Li4ed87312012-10-11 13:34:00 +11002785 struct mddev *mddev = thread->mddev;
NeilBrown9f2c9d12011-10-11 16:48:43 +11002786 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 unsigned long flags;
NeilBrowne879a872011-10-11 16:49:02 +11002788 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 struct list_head *head = &conf->retry_list;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002790 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
2792 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002794 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 for (;;) {
NeilBrowna35e63e2008-03-04 14:29:29 -08002796
NeilBrown0021b7b2012-07-31 09:08:14 +02002797 flush_pending_writes(conf);
NeilBrowna35e63e2008-03-04 14:29:29 -08002798
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08002800 if (list_empty(head)) {
NeilBrown6cce3b232006-01-06 00:20:16 -08002801 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08002803 }
NeilBrown9f2c9d12011-10-11 16:48:43 +11002804 r10_bio = list_entry(head->prev, struct r10bio, retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 list_del(head->prev);
NeilBrown4443ae12006-01-06 00:20:28 -08002806 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 spin_unlock_irqrestore(&conf->device_lock, flags);
2808
2809 mddev = r10_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10002810 conf = mddev->private;
NeilBrownbd870a12011-07-28 11:39:24 +10002811 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
2812 test_bit(R10BIO_WriteError, &r10_bio->state))
NeilBrown749c55e2011-07-28 11:39:24 +10002813 handle_write_completed(conf, r10_bio);
NeilBrown3ea7daa2012-05-22 13:53:47 +10002814 else if (test_bit(R10BIO_IsReshape, &r10_bio->state))
2815 reshape_request_write(mddev, r10_bio);
NeilBrown749c55e2011-07-28 11:39:24 +10002816 else if (test_bit(R10BIO_IsSync, &r10_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 sync_request_write(mddev, r10_bio);
Jens Axboe7eaceac2011-03-10 08:52:07 +01002818 else if (test_bit(R10BIO_IsRecover, &r10_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 recovery_request_write(mddev, r10_bio);
NeilBrown856e08e2011-07-28 11:39:23 +10002820 else if (test_bit(R10BIO_ReadError, &r10_bio->state))
NeilBrown560f8e52011-07-28 11:39:23 +10002821 handle_read_error(mddev, r10_bio);
NeilBrown856e08e2011-07-28 11:39:23 +10002822 else {
2823 /* just a partial read to be scheduled from a
2824 * separate context
2825 */
2826 int slot = r10_bio->read_slot;
2827 generic_make_request(r10_bio->devs[slot].bio);
2828 }
NeilBrown4443ae12006-01-06 00:20:28 -08002829
NeilBrown1d9d5242009-10-16 15:55:32 +11002830 cond_resched();
NeilBrownde393cd2011-07-28 11:31:48 +10002831 if (mddev->flags & ~(1<<MD_CHANGE_PENDING))
2832 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 }
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002834 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835}
2836
2837
NeilBrowne879a872011-10-11 16:49:02 +11002838static int init_resync(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839{
2840 int buffs;
NeilBrown69335ef2011-12-23 10:17:54 +11002841 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
2843 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhennb6385482006-04-02 13:34:29 +02002844 BUG_ON(conf->r10buf_pool);
NeilBrown69335ef2011-12-23 10:17:54 +11002845 conf->have_replacement = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +10002846 for (i = 0; i < conf->geo.raid_disks; i++)
NeilBrown69335ef2011-12-23 10:17:54 +11002847 if (conf->mirrors[i].replacement)
2848 conf->have_replacement = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 conf->r10buf_pool = mempool_create(buffs, r10buf_pool_alloc, r10buf_pool_free, conf);
2850 if (!conf->r10buf_pool)
2851 return -ENOMEM;
2852 conf->next_resync = 0;
2853 return 0;
2854}
2855
2856/*
2857 * perform a "sync" on one "block"
2858 *
2859 * We need to make sure that no normal I/O request - particularly write
2860 * requests - conflict with active sync requests.
2861 *
2862 * This is achieved by tracking pending requests and a 'barrier' concept
2863 * that can be installed to exclude normal IO requests.
2864 *
2865 * Resync and recovery are handled very differently.
2866 * We differentiate by looking at MD_RECOVERY_SYNC in mddev->recovery.
2867 *
2868 * For resync, we iterate over virtual addresses, read all copies,
2869 * and update if there are differences. If only one copy is live,
2870 * skip it.
2871 * For recovery, we iterate over physical addresses, read a good
2872 * value for each non-in_sync drive, and over-write.
2873 *
2874 * So, for recovery we may have several outstanding complex requests for a
2875 * given address, one for each out-of-sync device. We model this by allocating
2876 * a number of r10_bio structures, one for each out-of-sync device.
2877 * As we setup these structures, we collect all bio's together into a list
2878 * which we then process collectively to add pages, and then process again
2879 * to pass to generic_make_request.
2880 *
2881 * The r10_bio structures are linked using a borrowed master_bio pointer.
2882 * This link is counted in ->remaining. When the r10_bio that points to NULL
2883 * has its remaining count decremented to 0, the whole complex operation
2884 * is complete.
2885 *
2886 */
2887
NeilBrownfd01b882011-10-11 16:47:53 +11002888static sector_t sync_request(struct mddev *mddev, sector_t sector_nr,
NeilBrownab9d47e2011-05-11 14:54:41 +10002889 int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890{
NeilBrowne879a872011-10-11 16:49:02 +11002891 struct r10conf *conf = mddev->private;
NeilBrown9f2c9d12011-10-11 16:48:43 +11002892 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 struct bio *biolist = NULL, *bio;
2894 sector_t max_sector, nr_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 int i;
NeilBrown6cce3b232006-01-06 00:20:16 -08002896 int max_sync;
NeilBrown57dab0b2010-10-19 10:03:39 +11002897 sector_t sync_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 sector_t sectors_skipped = 0;
2899 int chunks_skipped = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +10002900 sector_t chunk_mask = conf->geo.chunk_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
2902 if (!conf->r10buf_pool)
2903 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07002904 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
Martin Wilck7e83ccb2013-04-24 11:42:42 +10002906 /*
2907 * Allow skipping a full rebuild for incremental assembly
2908 * of a clean array, like RAID1 does.
2909 */
2910 if (mddev->bitmap == NULL &&
2911 mddev->recovery_cp == MaxSector &&
2912 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
2913 conf->fullsync == 0) {
2914 *skipped = 1;
2915 max_sector = mddev->dev_sectors;
2916 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) ||
2917 test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
2918 max_sector = mddev->resync_max_sectors;
2919 return max_sector - sector_nr;
2920 }
2921
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 skipped:
Andre Noll58c0fed2009-03-31 14:33:13 +11002923 max_sector = mddev->dev_sectors;
NeilBrown3ea7daa2012-05-22 13:53:47 +10002924 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) ||
2925 test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 max_sector = mddev->resync_max_sectors;
2927 if (sector_nr >= max_sector) {
NeilBrown6cce3b232006-01-06 00:20:16 -08002928 /* If we aborted, we need to abort the
2929 * sync on the 'current' bitmap chucks (there can
2930 * be several when recovering multiple devices).
2931 * as we may have started syncing it but not finished.
2932 * We can find the current address in
2933 * mddev->curr_resync, but for recovery,
2934 * we need to convert that to several
2935 * virtual addresses.
2936 */
NeilBrown3ea7daa2012-05-22 13:53:47 +10002937 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
2938 end_reshape(conf);
2939 return 0;
2940 }
2941
NeilBrown6cce3b232006-01-06 00:20:16 -08002942 if (mddev->curr_resync < max_sector) { /* aborted */
2943 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery))
2944 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
2945 &sync_blocks, 1);
NeilBrown5cf00fc2012-05-21 09:28:20 +10002946 else for (i = 0; i < conf->geo.raid_disks; i++) {
NeilBrown6cce3b232006-01-06 00:20:16 -08002947 sector_t sect =
2948 raid10_find_virt(conf, mddev->curr_resync, i);
2949 bitmap_end_sync(mddev->bitmap, sect,
2950 &sync_blocks, 1);
2951 }
NeilBrown9ad1aef2011-12-23 10:17:55 +11002952 } else {
2953 /* completed sync */
2954 if ((!mddev->bitmap || conf->fullsync)
2955 && conf->have_replacement
2956 && test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
2957 /* Completed a full sync so the replacements
2958 * are now fully recovered.
2959 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10002960 for (i = 0; i < conf->geo.raid_disks; i++)
NeilBrown9ad1aef2011-12-23 10:17:55 +11002961 if (conf->mirrors[i].replacement)
2962 conf->mirrors[i].replacement
2963 ->recovery_offset
2964 = MaxSector;
2965 }
NeilBrown6cce3b232006-01-06 00:20:16 -08002966 conf->fullsync = 0;
NeilBrown9ad1aef2011-12-23 10:17:55 +11002967 }
NeilBrown6cce3b232006-01-06 00:20:16 -08002968 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 close_sync(conf);
NeilBrown57afd892005-06-21 17:17:13 -07002970 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 return sectors_skipped;
2972 }
NeilBrown3ea7daa2012-05-22 13:53:47 +10002973
2974 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
2975 return reshape_request(mddev, sector_nr, skipped);
2976
NeilBrown5cf00fc2012-05-21 09:28:20 +10002977 if (chunks_skipped >= conf->geo.raid_disks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 /* if there has been nothing to do on any drive,
2979 * then there is nothing to do at all..
2980 */
NeilBrown57afd892005-06-21 17:17:13 -07002981 *skipped = 1;
2982 return (max_sector - sector_nr) + sectors_skipped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 }
2984
NeilBrownc6207272008-02-06 01:39:52 -08002985 if (max_sector > mddev->resync_max)
2986 max_sector = mddev->resync_max; /* Don't do IO beyond here */
2987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 /* make sure whole request will fit in a chunk - if chunks
2989 * are meaningful
2990 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10002991 if (conf->geo.near_copies < conf->geo.raid_disks &&
2992 max_sector > (sector_nr | chunk_mask))
2993 max_sector = (sector_nr | chunk_mask) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 /*
2995 * If there is non-resync activity waiting for us then
2996 * put in a delay to throttle resync.
2997 */
NeilBrown0a27ec92006-01-06 00:20:13 -08002998 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 msleep_interruptible(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
3001 /* Again, very different code for resync and recovery.
3002 * Both must result in an r10bio with a list of bios that
3003 * have bi_end_io, bi_sector, bi_bdev set,
3004 * and bi_private set to the r10bio.
3005 * For recovery, we may actually create several r10bios
3006 * with 2 bios in each, that correspond to the bios in the main one.
3007 * In this case, the subordinate r10bios link back through a
3008 * borrowed master_bio pointer, and the counter in the master
3009 * includes a ref from each subordinate.
3010 */
3011 /* First, we decide what to do and set ->bi_end_io
3012 * To end_sync_read if we want to read, and
3013 * end_sync_write if we will want to write.
3014 */
3015
NeilBrown6cce3b232006-01-06 00:20:16 -08003016 max_sync = RESYNC_PAGES << (PAGE_SHIFT-9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 if (!test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
3018 /* recovery... the complicated one */
NeilBrowne875ece2011-07-28 11:39:24 +10003019 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 r10_bio = NULL;
3021
NeilBrown5cf00fc2012-05-21 09:28:20 +10003022 for (i = 0 ; i < conf->geo.raid_disks; i++) {
NeilBrownab9d47e2011-05-11 14:54:41 +10003023 int still_degraded;
NeilBrown9f2c9d12011-10-11 16:48:43 +11003024 struct r10bio *rb2;
NeilBrownab9d47e2011-05-11 14:54:41 +10003025 sector_t sect;
3026 int must_sync;
NeilBrowne875ece2011-07-28 11:39:24 +10003027 int any_working;
Jonathan Brassowdc280d982012-07-31 10:03:52 +10003028 struct raid10_info *mirror = &conf->mirrors[i];
NeilBrownab9d47e2011-05-11 14:54:41 +10003029
NeilBrown24afd802011-12-23 10:17:55 +11003030 if ((mirror->rdev == NULL ||
3031 test_bit(In_sync, &mirror->rdev->flags))
3032 &&
3033 (mirror->replacement == NULL ||
3034 test_bit(Faulty,
3035 &mirror->replacement->flags)))
NeilBrownab9d47e2011-05-11 14:54:41 +10003036 continue;
3037
3038 still_degraded = 0;
3039 /* want to reconstruct this device */
3040 rb2 = r10_bio;
3041 sect = raid10_find_virt(conf, sector_nr, i);
NeilBrownfc448a12012-07-03 10:37:30 +10003042 if (sect >= mddev->resync_max_sectors) {
3043 /* last stripe is not complete - don't
3044 * try to recover this sector.
3045 */
3046 continue;
3047 }
NeilBrown24afd802011-12-23 10:17:55 +11003048 /* Unless we are doing a full sync, or a replacement
3049 * we only need to recover the block if it is set in
3050 * the bitmap
NeilBrownab9d47e2011-05-11 14:54:41 +10003051 */
3052 must_sync = bitmap_start_sync(mddev->bitmap, sect,
3053 &sync_blocks, 1);
3054 if (sync_blocks < max_sync)
3055 max_sync = sync_blocks;
3056 if (!must_sync &&
NeilBrown24afd802011-12-23 10:17:55 +11003057 mirror->replacement == NULL &&
NeilBrownab9d47e2011-05-11 14:54:41 +10003058 !conf->fullsync) {
3059 /* yep, skip the sync_blocks here, but don't assume
3060 * that there will never be anything to do here
NeilBrown6cce3b232006-01-06 00:20:16 -08003061 */
NeilBrownab9d47e2011-05-11 14:54:41 +10003062 chunks_skipped = -1;
3063 continue;
3064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
NeilBrownab9d47e2011-05-11 14:54:41 +10003066 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
3067 raise_barrier(conf, rb2 != NULL);
3068 atomic_set(&r10_bio->remaining, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
NeilBrownab9d47e2011-05-11 14:54:41 +10003070 r10_bio->master_bio = (struct bio*)rb2;
3071 if (rb2)
3072 atomic_inc(&rb2->remaining);
3073 r10_bio->mddev = mddev;
3074 set_bit(R10BIO_IsRecover, &r10_bio->state);
3075 r10_bio->sector = sect;
NeilBrown6cce3b232006-01-06 00:20:16 -08003076
NeilBrownab9d47e2011-05-11 14:54:41 +10003077 raid10_find_phys(conf, r10_bio);
NeilBrown18055562009-05-07 12:48:10 +10003078
NeilBrownab9d47e2011-05-11 14:54:41 +10003079 /* Need to check if the array will still be
3080 * degraded
3081 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10003082 for (j = 0; j < conf->geo.raid_disks; j++)
NeilBrownab9d47e2011-05-11 14:54:41 +10003083 if (conf->mirrors[j].rdev == NULL ||
3084 test_bit(Faulty, &conf->mirrors[j].rdev->flags)) {
3085 still_degraded = 1;
NeilBrown87fc7672005-09-09 16:24:04 -07003086 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003088
3089 must_sync = bitmap_start_sync(mddev->bitmap, sect,
3090 &sync_blocks, still_degraded);
3091
NeilBrowne875ece2011-07-28 11:39:24 +10003092 any_working = 0;
NeilBrownab9d47e2011-05-11 14:54:41 +10003093 for (j=0; j<conf->copies;j++) {
NeilBrowne875ece2011-07-28 11:39:24 +10003094 int k;
NeilBrownab9d47e2011-05-11 14:54:41 +10003095 int d = r10_bio->devs[j].devnum;
NeilBrown5e570282011-07-28 11:39:25 +10003096 sector_t from_addr, to_addr;
NeilBrown3cb03002011-10-11 16:45:26 +11003097 struct md_rdev *rdev;
NeilBrown40c356c2011-07-28 11:39:24 +10003098 sector_t sector, first_bad;
3099 int bad_sectors;
NeilBrownab9d47e2011-05-11 14:54:41 +10003100 if (!conf->mirrors[d].rdev ||
3101 !test_bit(In_sync, &conf->mirrors[d].rdev->flags))
3102 continue;
3103 /* This is where we read from */
NeilBrowne875ece2011-07-28 11:39:24 +10003104 any_working = 1;
NeilBrown40c356c2011-07-28 11:39:24 +10003105 rdev = conf->mirrors[d].rdev;
3106 sector = r10_bio->devs[j].addr;
3107
3108 if (is_badblock(rdev, sector, max_sync,
3109 &first_bad, &bad_sectors)) {
3110 if (first_bad > sector)
3111 max_sync = first_bad - sector;
3112 else {
3113 bad_sectors -= (sector
3114 - first_bad);
3115 if (max_sync > bad_sectors)
3116 max_sync = bad_sectors;
3117 continue;
3118 }
3119 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003120 bio = r10_bio->devs[0].bio;
Kent Overstreet8be185f2012-09-06 14:14:43 -07003121 bio_reset(bio);
NeilBrownab9d47e2011-05-11 14:54:41 +10003122 bio->bi_next = biolist;
3123 biolist = bio;
3124 bio->bi_private = r10_bio;
3125 bio->bi_end_io = end_sync_read;
3126 bio->bi_rw = READ;
NeilBrown5e570282011-07-28 11:39:25 +10003127 from_addr = r10_bio->devs[j].addr;
NeilBrown24afd802011-12-23 10:17:55 +11003128 bio->bi_sector = from_addr + rdev->data_offset;
3129 bio->bi_bdev = rdev->bdev;
3130 atomic_inc(&rdev->nr_pending);
3131 /* and we write to 'i' (if not in_sync) */
NeilBrownab9d47e2011-05-11 14:54:41 +10003132
3133 for (k=0; k<conf->copies; k++)
3134 if (r10_bio->devs[k].devnum == i)
3135 break;
3136 BUG_ON(k == conf->copies);
NeilBrown5e570282011-07-28 11:39:25 +10003137 to_addr = r10_bio->devs[k].addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10003138 r10_bio->devs[0].devnum = d;
NeilBrown5e570282011-07-28 11:39:25 +10003139 r10_bio->devs[0].addr = from_addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10003140 r10_bio->devs[1].devnum = i;
NeilBrown5e570282011-07-28 11:39:25 +10003141 r10_bio->devs[1].addr = to_addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10003142
NeilBrown24afd802011-12-23 10:17:55 +11003143 rdev = mirror->rdev;
3144 if (!test_bit(In_sync, &rdev->flags)) {
3145 bio = r10_bio->devs[1].bio;
Kent Overstreet8be185f2012-09-06 14:14:43 -07003146 bio_reset(bio);
NeilBrown24afd802011-12-23 10:17:55 +11003147 bio->bi_next = biolist;
3148 biolist = bio;
3149 bio->bi_private = r10_bio;
3150 bio->bi_end_io = end_sync_write;
3151 bio->bi_rw = WRITE;
3152 bio->bi_sector = to_addr
3153 + rdev->data_offset;
3154 bio->bi_bdev = rdev->bdev;
3155 atomic_inc(&r10_bio->remaining);
3156 } else
3157 r10_bio->devs[1].bio->bi_end_io = NULL;
3158
3159 /* and maybe write to replacement */
3160 bio = r10_bio->devs[1].repl_bio;
3161 if (bio)
3162 bio->bi_end_io = NULL;
3163 rdev = mirror->replacement;
3164 /* Note: if rdev != NULL, then bio
3165 * cannot be NULL as r10buf_pool_alloc will
3166 * have allocated it.
3167 * So the second test here is pointless.
3168 * But it keeps semantic-checkers happy, and
3169 * this comment keeps human reviewers
3170 * happy.
3171 */
3172 if (rdev == NULL || bio == NULL ||
3173 test_bit(Faulty, &rdev->flags))
3174 break;
Kent Overstreet8be185f2012-09-06 14:14:43 -07003175 bio_reset(bio);
NeilBrown24afd802011-12-23 10:17:55 +11003176 bio->bi_next = biolist;
3177 biolist = bio;
3178 bio->bi_private = r10_bio;
3179 bio->bi_end_io = end_sync_write;
3180 bio->bi_rw = WRITE;
3181 bio->bi_sector = to_addr + rdev->data_offset;
3182 bio->bi_bdev = rdev->bdev;
3183 atomic_inc(&r10_bio->remaining);
NeilBrownab9d47e2011-05-11 14:54:41 +10003184 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003186 if (j == conf->copies) {
NeilBrowne875ece2011-07-28 11:39:24 +10003187 /* Cannot recover, so abort the recovery or
3188 * record a bad block */
NeilBrownab9d47e2011-05-11 14:54:41 +10003189 put_buf(r10_bio);
3190 if (rb2)
3191 atomic_dec(&rb2->remaining);
3192 r10_bio = rb2;
NeilBrowne875ece2011-07-28 11:39:24 +10003193 if (any_working) {
3194 /* problem is that there are bad blocks
3195 * on other device(s)
3196 */
3197 int k;
3198 for (k = 0; k < conf->copies; k++)
3199 if (r10_bio->devs[k].devnum == i)
3200 break;
NeilBrown24afd802011-12-23 10:17:55 +11003201 if (!test_bit(In_sync,
3202 &mirror->rdev->flags)
3203 && !rdev_set_badblocks(
3204 mirror->rdev,
3205 r10_bio->devs[k].addr,
3206 max_sync, 0))
3207 any_working = 0;
3208 if (mirror->replacement &&
3209 !rdev_set_badblocks(
3210 mirror->replacement,
NeilBrowne875ece2011-07-28 11:39:24 +10003211 r10_bio->devs[k].addr,
3212 max_sync, 0))
3213 any_working = 0;
3214 }
3215 if (!any_working) {
3216 if (!test_and_set_bit(MD_RECOVERY_INTR,
3217 &mddev->recovery))
3218 printk(KERN_INFO "md/raid10:%s: insufficient "
3219 "working devices for recovery.\n",
3220 mdname(mddev));
NeilBrown24afd802011-12-23 10:17:55 +11003221 mirror->recovery_disabled
NeilBrowne875ece2011-07-28 11:39:24 +10003222 = mddev->recovery_disabled;
3223 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003224 break;
3225 }
3226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 if (biolist == NULL) {
3228 while (r10_bio) {
NeilBrown9f2c9d12011-10-11 16:48:43 +11003229 struct r10bio *rb2 = r10_bio;
3230 r10_bio = (struct r10bio*) rb2->master_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 rb2->master_bio = NULL;
3232 put_buf(rb2);
3233 }
3234 goto giveup;
3235 }
3236 } else {
3237 /* resync. Schedule a read for every block at this virt offset */
3238 int count = 0;
NeilBrown6cce3b232006-01-06 00:20:16 -08003239
NeilBrown78200d42009-02-25 13:18:47 +11003240 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
3241
NeilBrown6cce3b232006-01-06 00:20:16 -08003242 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
3243 &sync_blocks, mddev->degraded) &&
NeilBrownab9d47e2011-05-11 14:54:41 +10003244 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED,
3245 &mddev->recovery)) {
NeilBrown6cce3b232006-01-06 00:20:16 -08003246 /* We can skip this block */
3247 *skipped = 1;
3248 return sync_blocks + sectors_skipped;
3249 }
3250 if (sync_blocks < max_sync)
3251 max_sync = sync_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
3253
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 r10_bio->mddev = mddev;
3255 atomic_set(&r10_bio->remaining, 0);
NeilBrown6cce3b232006-01-06 00:20:16 -08003256 raise_barrier(conf, 0);
3257 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
3259 r10_bio->master_bio = NULL;
3260 r10_bio->sector = sector_nr;
3261 set_bit(R10BIO_IsSync, &r10_bio->state);
3262 raid10_find_phys(conf, r10_bio);
NeilBrown5cf00fc2012-05-21 09:28:20 +10003263 r10_bio->sectors = (sector_nr | chunk_mask) - sector_nr + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
NeilBrown5cf00fc2012-05-21 09:28:20 +10003265 for (i = 0; i < conf->copies; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 int d = r10_bio->devs[i].devnum;
NeilBrown40c356c2011-07-28 11:39:24 +10003267 sector_t first_bad, sector;
3268 int bad_sectors;
3269
NeilBrown9ad1aef2011-12-23 10:17:55 +11003270 if (r10_bio->devs[i].repl_bio)
3271 r10_bio->devs[i].repl_bio->bi_end_io = NULL;
3272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 bio = r10_bio->devs[i].bio;
Kent Overstreet8be185f2012-09-06 14:14:43 -07003274 bio_reset(bio);
NeilBrownaf03b8e2007-06-16 10:16:06 -07003275 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 if (conf->mirrors[d].rdev == NULL ||
NeilBrownb2d444d2005-11-08 21:39:31 -08003277 test_bit(Faulty, &conf->mirrors[d].rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 continue;
NeilBrown40c356c2011-07-28 11:39:24 +10003279 sector = r10_bio->devs[i].addr;
3280 if (is_badblock(conf->mirrors[d].rdev,
3281 sector, max_sync,
3282 &first_bad, &bad_sectors)) {
3283 if (first_bad > sector)
3284 max_sync = first_bad - sector;
3285 else {
3286 bad_sectors -= (sector - first_bad);
3287 if (max_sync > bad_sectors)
Dan Carpenter91502f02012-10-11 14:20:58 +11003288 max_sync = bad_sectors;
NeilBrown40c356c2011-07-28 11:39:24 +10003289 continue;
3290 }
3291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
3293 atomic_inc(&r10_bio->remaining);
3294 bio->bi_next = biolist;
3295 biolist = bio;
3296 bio->bi_private = r10_bio;
3297 bio->bi_end_io = end_sync_read;
NeilBrown802ba062006-12-13 00:34:13 -08003298 bio->bi_rw = READ;
NeilBrown40c356c2011-07-28 11:39:24 +10003299 bio->bi_sector = sector +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 conf->mirrors[d].rdev->data_offset;
3301 bio->bi_bdev = conf->mirrors[d].rdev->bdev;
3302 count++;
NeilBrown9ad1aef2011-12-23 10:17:55 +11003303
3304 if (conf->mirrors[d].replacement == NULL ||
3305 test_bit(Faulty,
3306 &conf->mirrors[d].replacement->flags))
3307 continue;
3308
3309 /* Need to set up for writing to the replacement */
3310 bio = r10_bio->devs[i].repl_bio;
Kent Overstreet8be185f2012-09-06 14:14:43 -07003311 bio_reset(bio);
NeilBrown9ad1aef2011-12-23 10:17:55 +11003312 clear_bit(BIO_UPTODATE, &bio->bi_flags);
3313
3314 sector = r10_bio->devs[i].addr;
3315 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
3316 bio->bi_next = biolist;
3317 biolist = bio;
3318 bio->bi_private = r10_bio;
3319 bio->bi_end_io = end_sync_write;
3320 bio->bi_rw = WRITE;
3321 bio->bi_sector = sector +
3322 conf->mirrors[d].replacement->data_offset;
3323 bio->bi_bdev = conf->mirrors[d].replacement->bdev;
3324 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 }
3326
3327 if (count < 2) {
3328 for (i=0; i<conf->copies; i++) {
3329 int d = r10_bio->devs[i].devnum;
3330 if (r10_bio->devs[i].bio->bi_end_io)
NeilBrownab9d47e2011-05-11 14:54:41 +10003331 rdev_dec_pending(conf->mirrors[d].rdev,
3332 mddev);
NeilBrown9ad1aef2011-12-23 10:17:55 +11003333 if (r10_bio->devs[i].repl_bio &&
3334 r10_bio->devs[i].repl_bio->bi_end_io)
3335 rdev_dec_pending(
3336 conf->mirrors[d].replacement,
3337 mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 }
3339 put_buf(r10_bio);
3340 biolist = NULL;
3341 goto giveup;
3342 }
3343 }
3344
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 nr_sectors = 0;
NeilBrown6cce3b232006-01-06 00:20:16 -08003346 if (sector_nr + max_sync < max_sector)
3347 max_sector = sector_nr + max_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 do {
3349 struct page *page;
3350 int len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 if (sector_nr + (len>>9) > max_sector)
3352 len = (max_sector - sector_nr) << 9;
3353 if (len == 0)
3354 break;
3355 for (bio= biolist ; bio ; bio=bio->bi_next) {
NeilBrownab9d47e2011-05-11 14:54:41 +10003356 struct bio *bio2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
NeilBrownab9d47e2011-05-11 14:54:41 +10003358 if (bio_add_page(bio, page, len, 0))
3359 continue;
3360
3361 /* stop here */
3362 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
3363 for (bio2 = biolist;
3364 bio2 && bio2 != bio;
3365 bio2 = bio2->bi_next) {
3366 /* remove last page from this bio */
3367 bio2->bi_vcnt--;
3368 bio2->bi_size -= len;
3369 bio2->bi_flags &= ~(1<< BIO_SEG_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003371 goto bio_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 }
3373 nr_sectors += len>>9;
3374 sector_nr += len>>9;
3375 } while (biolist->bi_vcnt < RESYNC_PAGES);
3376 bio_full:
3377 r10_bio->sectors = nr_sectors;
3378
3379 while (biolist) {
3380 bio = biolist;
3381 biolist = biolist->bi_next;
3382
3383 bio->bi_next = NULL;
3384 r10_bio = bio->bi_private;
3385 r10_bio->sectors = nr_sectors;
3386
3387 if (bio->bi_end_io == end_sync_read) {
3388 md_sync_acct(bio->bi_bdev, nr_sectors);
3389 generic_make_request(bio);
3390 }
3391 }
3392
NeilBrown57afd892005-06-21 17:17:13 -07003393 if (sectors_skipped)
3394 /* pretend they weren't skipped, it makes
3395 * no important difference in this case
3396 */
3397 md_done_sync(mddev, sectors_skipped, 1);
3398
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 return sectors_skipped + nr_sectors;
3400 giveup:
3401 /* There is nowhere to write, so all non-sync
NeilBrowne875ece2011-07-28 11:39:24 +10003402 * drives must be failed or in resync, all drives
3403 * have a bad block, so try the next chunk...
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 */
NeilBrown09b40682009-02-25 13:18:47 +11003405 if (sector_nr + max_sync < max_sector)
3406 max_sector = sector_nr + max_sync;
3407
3408 sectors_skipped += (max_sector - sector_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 chunks_skipped ++;
3410 sector_nr = max_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 goto skipped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412}
3413
Dan Williams80c3a6c2009-03-17 18:10:40 -07003414static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11003415raid10_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07003416{
3417 sector_t size;
NeilBrowne879a872011-10-11 16:49:02 +11003418 struct r10conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003419
3420 if (!raid_disks)
NeilBrown3ea7daa2012-05-22 13:53:47 +10003421 raid_disks = min(conf->geo.raid_disks,
3422 conf->prev.raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07003423 if (!sectors)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003424 sectors = conf->dev_sectors;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003425
NeilBrown5cf00fc2012-05-21 09:28:20 +10003426 size = sectors >> conf->geo.chunk_shift;
3427 sector_div(size, conf->geo.far_copies);
Dan Williams80c3a6c2009-03-17 18:10:40 -07003428 size = size * raid_disks;
NeilBrown5cf00fc2012-05-21 09:28:20 +10003429 sector_div(size, conf->geo.near_copies);
Dan Williams80c3a6c2009-03-17 18:10:40 -07003430
NeilBrown5cf00fc2012-05-21 09:28:20 +10003431 return size << conf->geo.chunk_shift;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003432}
3433
NeilBrown6508fdb2012-05-17 10:08:45 +10003434static void calc_sectors(struct r10conf *conf, sector_t size)
3435{
3436 /* Calculate the number of sectors-per-device that will
3437 * actually be used, and set conf->dev_sectors and
3438 * conf->stride
3439 */
3440
NeilBrown5cf00fc2012-05-21 09:28:20 +10003441 size = size >> conf->geo.chunk_shift;
3442 sector_div(size, conf->geo.far_copies);
3443 size = size * conf->geo.raid_disks;
3444 sector_div(size, conf->geo.near_copies);
NeilBrown6508fdb2012-05-17 10:08:45 +10003445 /* 'size' is now the number of chunks in the array */
3446 /* calculate "used chunks per device" */
3447 size = size * conf->copies;
3448
3449 /* We need to round up when dividing by raid_disks to
3450 * get the stride size.
3451 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10003452 size = DIV_ROUND_UP_SECTOR_T(size, conf->geo.raid_disks);
NeilBrown6508fdb2012-05-17 10:08:45 +10003453
NeilBrown5cf00fc2012-05-21 09:28:20 +10003454 conf->dev_sectors = size << conf->geo.chunk_shift;
NeilBrown6508fdb2012-05-17 10:08:45 +10003455
NeilBrown5cf00fc2012-05-21 09:28:20 +10003456 if (conf->geo.far_offset)
3457 conf->geo.stride = 1 << conf->geo.chunk_shift;
NeilBrown6508fdb2012-05-17 10:08:45 +10003458 else {
NeilBrown5cf00fc2012-05-21 09:28:20 +10003459 sector_div(size, conf->geo.far_copies);
3460 conf->geo.stride = size << conf->geo.chunk_shift;
NeilBrown6508fdb2012-05-17 10:08:45 +10003461 }
3462}
Trela, Maciejdab8b292010-03-08 16:02:45 +11003463
NeilBrowndeb200d2012-05-21 09:28:33 +10003464enum geo_type {geo_new, geo_old, geo_start};
3465static int setup_geo(struct geom *geo, struct mddev *mddev, enum geo_type new)
3466{
3467 int nc, fc, fo;
3468 int layout, chunk, disks;
3469 switch (new) {
3470 case geo_old:
3471 layout = mddev->layout;
3472 chunk = mddev->chunk_sectors;
3473 disks = mddev->raid_disks - mddev->delta_disks;
3474 break;
3475 case geo_new:
3476 layout = mddev->new_layout;
3477 chunk = mddev->new_chunk_sectors;
3478 disks = mddev->raid_disks;
3479 break;
3480 default: /* avoid 'may be unused' warnings */
3481 case geo_start: /* new when starting reshape - raid_disks not
3482 * updated yet. */
3483 layout = mddev->new_layout;
3484 chunk = mddev->new_chunk_sectors;
3485 disks = mddev->raid_disks + mddev->delta_disks;
3486 break;
3487 }
Jonathan Brassow475901a2013-02-21 13:28:10 +11003488 if (layout >> 18)
NeilBrowndeb200d2012-05-21 09:28:33 +10003489 return -1;
3490 if (chunk < (PAGE_SIZE >> 9) ||
3491 !is_power_of_2(chunk))
3492 return -2;
3493 nc = layout & 255;
3494 fc = (layout >> 8) & 255;
3495 fo = layout & (1<<16);
3496 geo->raid_disks = disks;
3497 geo->near_copies = nc;
3498 geo->far_copies = fc;
3499 geo->far_offset = fo;
Jonathan Brassow475901a2013-02-21 13:28:10 +11003500 geo->far_set_size = (layout & (1<<17)) ? disks / fc : disks;
NeilBrowndeb200d2012-05-21 09:28:33 +10003501 geo->chunk_mask = chunk - 1;
3502 geo->chunk_shift = ffz(~chunk);
3503 return nc*fc;
3504}
3505
NeilBrowne879a872011-10-11 16:49:02 +11003506static struct r10conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507{
NeilBrowne879a872011-10-11 16:49:02 +11003508 struct r10conf *conf = NULL;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003509 int err = -EINVAL;
NeilBrowndeb200d2012-05-21 09:28:33 +10003510 struct geom geo;
3511 int copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
NeilBrowndeb200d2012-05-21 09:28:33 +10003513 copies = setup_geo(&geo, mddev, geo_new);
3514
3515 if (copies == -2) {
NeilBrown128595e2010-05-03 14:47:14 +10003516 printk(KERN_ERR "md/raid10:%s: chunk size must be "
3517 "at least PAGE_SIZE(%ld) and be a power of 2.\n",
3518 mdname(mddev), PAGE_SIZE);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003519 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 }
NeilBrown2604b702006-01-06 00:20:36 -08003521
NeilBrowndeb200d2012-05-21 09:28:33 +10003522 if (copies < 2 || copies > mddev->raid_disks) {
NeilBrown128595e2010-05-03 14:47:14 +10003523 printk(KERN_ERR "md/raid10:%s: unsupported raid10 layout: 0x%8x\n",
Maciej Trelaf73ea872010-06-16 11:46:29 +01003524 mdname(mddev), mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 goto out;
3526 }
Trela, Maciejdab8b292010-03-08 16:02:45 +11003527
3528 err = -ENOMEM;
NeilBrowne879a872011-10-11 16:49:02 +11003529 conf = kzalloc(sizeof(struct r10conf), GFP_KERNEL);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003530 if (!conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 goto out;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003532
NeilBrown3ea7daa2012-05-22 13:53:47 +10003533 /* FIXME calc properly */
Jonathan Brassowdc280d982012-07-31 10:03:52 +10003534 conf->mirrors = kzalloc(sizeof(struct raid10_info)*(mddev->raid_disks +
NeilBrown3ea7daa2012-05-22 13:53:47 +10003535 max(0,mddev->delta_disks)),
Trela, Maciejdab8b292010-03-08 16:02:45 +11003536 GFP_KERNEL);
3537 if (!conf->mirrors)
3538 goto out;
NeilBrown4443ae12006-01-06 00:20:28 -08003539
3540 conf->tmppage = alloc_page(GFP_KERNEL);
3541 if (!conf->tmppage)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003542 goto out;
3543
NeilBrowndeb200d2012-05-21 09:28:33 +10003544 conf->geo = geo;
3545 conf->copies = copies;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003546 conf->r10bio_pool = mempool_create(NR_RAID10_BIOS, r10bio_pool_alloc,
3547 r10bio_pool_free, conf);
3548 if (!conf->r10bio_pool)
3549 goto out;
3550
NeilBrown6508fdb2012-05-17 10:08:45 +10003551 calc_sectors(conf, mddev->dev_sectors);
NeilBrown3ea7daa2012-05-22 13:53:47 +10003552 if (mddev->reshape_position == MaxSector) {
3553 conf->prev = conf->geo;
3554 conf->reshape_progress = MaxSector;
3555 } else {
3556 if (setup_geo(&conf->prev, mddev, geo_old) != conf->copies) {
3557 err = -EINVAL;
3558 goto out;
3559 }
3560 conf->reshape_progress = mddev->reshape_position;
3561 if (conf->prev.far_offset)
3562 conf->prev.stride = 1 << conf->prev.chunk_shift;
3563 else
3564 /* far_copies must be 1 */
3565 conf->prev.stride = conf->dev_sectors;
3566 }
Neil Browne7e72bf2008-05-14 16:05:54 -07003567 spin_lock_init(&conf->device_lock);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003568 INIT_LIST_HEAD(&conf->retry_list);
3569
3570 spin_lock_init(&conf->resync_lock);
3571 init_waitqueue_head(&conf->wait_barrier);
3572
NeilBrown02326052012-07-03 15:56:52 +10003573 conf->thread = md_register_thread(raid10d, mddev, "raid10");
Trela, Maciejdab8b292010-03-08 16:02:45 +11003574 if (!conf->thread)
3575 goto out;
3576
Trela, Maciejdab8b292010-03-08 16:02:45 +11003577 conf->mddev = mddev;
3578 return conf;
3579
3580 out:
NeilBrown3ea7daa2012-05-22 13:53:47 +10003581 if (err == -ENOMEM)
3582 printk(KERN_ERR "md/raid10:%s: couldn't allocate memory.\n",
3583 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11003584 if (conf) {
3585 if (conf->r10bio_pool)
3586 mempool_destroy(conf->r10bio_pool);
3587 kfree(conf->mirrors);
3588 safe_put_page(conf->tmppage);
3589 kfree(conf);
3590 }
3591 return ERR_PTR(err);
3592}
3593
NeilBrownfd01b882011-10-11 16:47:53 +11003594static int run(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003595{
NeilBrowne879a872011-10-11 16:49:02 +11003596 struct r10conf *conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003597 int i, disk_idx, chunk_size;
Jonathan Brassowdc280d982012-07-31 10:03:52 +10003598 struct raid10_info *disk;
NeilBrown3cb03002011-10-11 16:45:26 +11003599 struct md_rdev *rdev;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003600 sector_t size;
NeilBrown3ea7daa2012-05-22 13:53:47 +10003601 sector_t min_offset_diff = 0;
3602 int first = 1;
Shaohua Li532a2a32012-10-11 13:30:52 +11003603 bool discard_supported = false;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003604
3605 if (mddev->private == NULL) {
3606 conf = setup_conf(mddev);
3607 if (IS_ERR(conf))
3608 return PTR_ERR(conf);
3609 mddev->private = conf;
3610 }
3611 conf = mddev->private;
3612 if (!conf)
3613 goto out;
3614
Trela, Maciejdab8b292010-03-08 16:02:45 +11003615 mddev->thread = conf->thread;
3616 conf->thread = NULL;
3617
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10003618 chunk_size = mddev->chunk_sectors << 9;
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003619 if (mddev->queue) {
Shaohua Li532a2a32012-10-11 13:30:52 +11003620 blk_queue_max_discard_sectors(mddev->queue,
3621 mddev->chunk_sectors);
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07003622 blk_queue_max_write_same_sectors(mddev->queue, 0);
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003623 blk_queue_io_min(mddev->queue, chunk_size);
3624 if (conf->geo.raid_disks % conf->geo.near_copies)
3625 blk_queue_io_opt(mddev->queue, chunk_size * conf->geo.raid_disks);
3626 else
3627 blk_queue_io_opt(mddev->queue, chunk_size *
3628 (conf->geo.raid_disks / conf->geo.near_copies));
3629 }
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10003630
NeilBrowndafb20f2012-03-19 12:46:39 +11003631 rdev_for_each(rdev, mddev) {
NeilBrown3ea7daa2012-05-22 13:53:47 +10003632 long long diff;
NeilBrownaba336b2012-05-31 15:39:11 +10003633 struct request_queue *q;
NeilBrown34b343c2011-07-28 11:31:47 +10003634
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 disk_idx = rdev->raid_disk;
NeilBrownf8c9e742012-05-21 09:28:33 +10003636 if (disk_idx < 0)
3637 continue;
3638 if (disk_idx >= conf->geo.raid_disks &&
3639 disk_idx >= conf->prev.raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 continue;
3641 disk = conf->mirrors + disk_idx;
3642
NeilBrown56a25592011-12-23 10:17:55 +11003643 if (test_bit(Replacement, &rdev->flags)) {
3644 if (disk->replacement)
3645 goto out_free_conf;
3646 disk->replacement = rdev;
3647 } else {
3648 if (disk->rdev)
3649 goto out_free_conf;
3650 disk->rdev = rdev;
3651 }
NeilBrownaba336b2012-05-31 15:39:11 +10003652 q = bdev_get_queue(rdev->bdev);
3653 if (q->merge_bvec_fn)
3654 mddev->merge_check_needed = 1;
NeilBrown3ea7daa2012-05-22 13:53:47 +10003655 diff = (rdev->new_data_offset - rdev->data_offset);
3656 if (!mddev->reshape_backwards)
3657 diff = -diff;
3658 if (diff < 0)
3659 diff = 0;
3660 if (first || diff < min_offset_diff)
3661 min_offset_diff = diff;
NeilBrown56a25592011-12-23 10:17:55 +11003662
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003663 if (mddev->gendisk)
3664 disk_stack_limits(mddev->gendisk, rdev->bdev,
3665 rdev->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666
3667 disk->head_position = 0;
Shaohua Li532a2a32012-10-11 13:30:52 +11003668
3669 if (blk_queue_discard(bdev_get_queue(rdev->bdev)))
3670 discard_supported = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 }
NeilBrown3ea7daa2012-05-22 13:53:47 +10003672
Jonathan Brassowed30be02012-10-31 11:42:30 +11003673 if (mddev->queue) {
3674 if (discard_supported)
3675 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
3676 mddev->queue);
3677 else
3678 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
3679 mddev->queue);
3680 }
NeilBrown6d508242005-09-09 16:24:03 -07003681 /* need to check that every block has at least one working mirror */
NeilBrown700c7212011-07-27 11:00:36 +10003682 if (!enough(conf, -1)) {
NeilBrown128595e2010-05-03 14:47:14 +10003683 printk(KERN_ERR "md/raid10:%s: not enough operational mirrors.\n",
NeilBrown6d508242005-09-09 16:24:03 -07003684 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 goto out_free_conf;
3686 }
3687
NeilBrown3ea7daa2012-05-22 13:53:47 +10003688 if (conf->reshape_progress != MaxSector) {
3689 /* must ensure that shape change is supported */
3690 if (conf->geo.far_copies != 1 &&
3691 conf->geo.far_offset == 0)
3692 goto out_free_conf;
3693 if (conf->prev.far_copies != 1 &&
3694 conf->geo.far_offset == 0)
3695 goto out_free_conf;
3696 }
3697
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 mddev->degraded = 0;
NeilBrownf8c9e742012-05-21 09:28:33 +10003699 for (i = 0;
3700 i < conf->geo.raid_disks
3701 || i < conf->prev.raid_disks;
3702 i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703
3704 disk = conf->mirrors + i;
3705
NeilBrown56a25592011-12-23 10:17:55 +11003706 if (!disk->rdev && disk->replacement) {
3707 /* The replacement is all we have - use it */
3708 disk->rdev = disk->replacement;
3709 disk->replacement = NULL;
3710 clear_bit(Replacement, &disk->rdev->flags);
3711 }
3712
NeilBrown5fd6c1d2006-06-26 00:27:40 -07003713 if (!disk->rdev ||
NeilBrown2e333e82006-10-21 10:24:07 -07003714 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 disk->head_position = 0;
3716 mddev->degraded++;
Neil Brown8c2e8702008-06-28 08:30:52 +10003717 if (disk->rdev)
3718 conf->fullsync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 }
NeilBrownd890fa22011-10-26 11:54:39 +11003720 disk->recovery_disabled = mddev->recovery_disabled - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 }
3722
Andre Noll8c6ac862009-06-18 08:48:06 +10003723 if (mddev->recovery_cp != MaxSector)
NeilBrown128595e2010-05-03 14:47:14 +10003724 printk(KERN_NOTICE "md/raid10:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10003725 " -- starting background reconstruction\n",
3726 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 printk(KERN_INFO
NeilBrown128595e2010-05-03 14:47:14 +10003728 "md/raid10:%s: active with %d out of %d devices\n",
NeilBrown5cf00fc2012-05-21 09:28:20 +10003729 mdname(mddev), conf->geo.raid_disks - mddev->degraded,
3730 conf->geo.raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 /*
3732 * Ok, everything is just fine now
3733 */
Trela, Maciejdab8b292010-03-08 16:02:45 +11003734 mddev->dev_sectors = conf->dev_sectors;
3735 size = raid10_size(mddev, 0, 0);
3736 md_set_array_sectors(mddev, size);
3737 mddev->resync_max_sectors = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003739 if (mddev->queue) {
NeilBrown5cf00fc2012-05-21 09:28:20 +10003740 int stripe = conf->geo.raid_disks *
Andre Noll9d8f0362009-06-18 08:45:01 +10003741 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003742 mddev->queue->backing_dev_info.congested_fn = raid10_congested;
3743 mddev->queue->backing_dev_info.congested_data = mddev;
3744
3745 /* Calculate max read-ahead size.
3746 * We need to readahead at least twice a whole stripe....
3747 * maybe...
3748 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10003749 stripe /= conf->geo.near_copies;
NeilBrown3ea7daa2012-05-22 13:53:47 +10003750 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
3751 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003752 blk_queue_merge_bvec(mddev->queue, raid10_mergeable_bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 }
3754
Martin K. Petersena91a2782011-03-17 11:11:05 +01003755
3756 if (md_integrity_register(mddev))
3757 goto out_free_conf;
3758
NeilBrown3ea7daa2012-05-22 13:53:47 +10003759 if (conf->reshape_progress != MaxSector) {
3760 unsigned long before_length, after_length;
3761
3762 before_length = ((1 << conf->prev.chunk_shift) *
3763 conf->prev.far_copies);
3764 after_length = ((1 << conf->geo.chunk_shift) *
3765 conf->geo.far_copies);
3766
3767 if (max(before_length, after_length) > min_offset_diff) {
3768 /* This cannot work */
3769 printk("md/raid10: offset difference not enough to continue reshape\n");
3770 goto out_free_conf;
3771 }
3772 conf->offset_diff = min_offset_diff;
3773
3774 conf->reshape_safe = conf->reshape_progress;
3775 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
3776 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
3777 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
3778 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
3779 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
3780 "reshape");
3781 }
3782
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 return 0;
3784
3785out_free_conf:
NeilBrown01f96c02011-09-21 15:30:20 +10003786 md_unregister_thread(&mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 if (conf->r10bio_pool)
3788 mempool_destroy(conf->r10bio_pool);
NeilBrown1345b1d2006-01-06 00:20:40 -08003789 safe_put_page(conf->tmppage);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07003790 kfree(conf->mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 kfree(conf);
3792 mddev->private = NULL;
3793out:
3794 return -EIO;
3795}
3796
NeilBrownfd01b882011-10-11 16:47:53 +11003797static int stop(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798{
NeilBrowne879a872011-10-11 16:49:02 +11003799 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
NeilBrown409c57f2009-03-31 14:39:39 +11003801 raise_barrier(conf, 0);
3802 lower_barrier(conf);
3803
NeilBrown01f96c02011-09-21 15:30:20 +10003804 md_unregister_thread(&mddev->thread);
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003805 if (mddev->queue)
3806 /* the unplug fn references 'conf'*/
3807 blk_sync_queue(mddev->queue);
3808
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 if (conf->r10bio_pool)
3810 mempool_destroy(conf->r10bio_pool);
Hirokazu Takahashi0fea7ed2013-04-24 11:42:44 +10003811 safe_put_page(conf->tmppage);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07003812 kfree(conf->mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 kfree(conf);
3814 mddev->private = NULL;
3815 return 0;
3816}
3817
NeilBrownfd01b882011-10-11 16:47:53 +11003818static void raid10_quiesce(struct mddev *mddev, int state)
NeilBrown6cce3b232006-01-06 00:20:16 -08003819{
NeilBrowne879a872011-10-11 16:49:02 +11003820 struct r10conf *conf = mddev->private;
NeilBrown6cce3b232006-01-06 00:20:16 -08003821
3822 switch(state) {
3823 case 1:
3824 raise_barrier(conf, 0);
3825 break;
3826 case 0:
3827 lower_barrier(conf);
3828 break;
3829 }
NeilBrown6cce3b232006-01-06 00:20:16 -08003830}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831
NeilBrown006a09a2012-03-19 12:46:40 +11003832static int raid10_resize(struct mddev *mddev, sector_t sectors)
3833{
3834 /* Resize of 'far' arrays is not supported.
3835 * For 'near' and 'offset' arrays we can set the
3836 * number of sectors used to be an appropriate multiple
3837 * of the chunk size.
3838 * For 'offset', this is far_copies*chunksize.
3839 * For 'near' the multiplier is the LCM of
3840 * near_copies and raid_disks.
3841 * So if far_copies > 1 && !far_offset, fail.
3842 * Else find LCM(raid_disks, near_copy)*far_copies and
3843 * multiply by chunk_size. Then round to this number.
3844 * This is mostly done by raid10_size()
3845 */
3846 struct r10conf *conf = mddev->private;
3847 sector_t oldsize, size;
3848
NeilBrownf8c9e742012-05-21 09:28:33 +10003849 if (mddev->reshape_position != MaxSector)
3850 return -EBUSY;
3851
NeilBrown5cf00fc2012-05-21 09:28:20 +10003852 if (conf->geo.far_copies > 1 && !conf->geo.far_offset)
NeilBrown006a09a2012-03-19 12:46:40 +11003853 return -EINVAL;
3854
3855 oldsize = raid10_size(mddev, 0, 0);
3856 size = raid10_size(mddev, sectors, 0);
NeilBrowna4a61252012-05-22 13:55:27 +10003857 if (mddev->external_size &&
3858 mddev->array_sectors > size)
NeilBrown006a09a2012-03-19 12:46:40 +11003859 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10003860 if (mddev->bitmap) {
3861 int ret = bitmap_resize(mddev->bitmap, size, 0, 0);
3862 if (ret)
3863 return ret;
3864 }
3865 md_set_array_sectors(mddev, size);
NeilBrown006a09a2012-03-19 12:46:40 +11003866 set_capacity(mddev->gendisk, mddev->array_sectors);
3867 revalidate_disk(mddev->gendisk);
3868 if (sectors > mddev->dev_sectors &&
3869 mddev->recovery_cp > oldsize) {
3870 mddev->recovery_cp = oldsize;
3871 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
3872 }
NeilBrown6508fdb2012-05-17 10:08:45 +10003873 calc_sectors(conf, sectors);
3874 mddev->dev_sectors = conf->dev_sectors;
NeilBrown006a09a2012-03-19 12:46:40 +11003875 mddev->resync_max_sectors = size;
3876 return 0;
3877}
3878
NeilBrownfd01b882011-10-11 16:47:53 +11003879static void *raid10_takeover_raid0(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003880{
NeilBrown3cb03002011-10-11 16:45:26 +11003881 struct md_rdev *rdev;
NeilBrowne879a872011-10-11 16:49:02 +11003882 struct r10conf *conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003883
3884 if (mddev->degraded > 0) {
NeilBrown128595e2010-05-03 14:47:14 +10003885 printk(KERN_ERR "md/raid10:%s: Error: degraded raid0!\n",
3886 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11003887 return ERR_PTR(-EINVAL);
3888 }
3889
Trela, Maciejdab8b292010-03-08 16:02:45 +11003890 /* Set new parameters */
3891 mddev->new_level = 10;
3892 /* new layout: far_copies = 1, near_copies = 2 */
3893 mddev->new_layout = (1<<8) + 2;
3894 mddev->new_chunk_sectors = mddev->chunk_sectors;
3895 mddev->delta_disks = mddev->raid_disks;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003896 mddev->raid_disks *= 2;
3897 /* make sure it will be not marked as dirty */
3898 mddev->recovery_cp = MaxSector;
3899
3900 conf = setup_conf(mddev);
Krzysztof Wojcik02214dc2011-02-04 14:18:26 +01003901 if (!IS_ERR(conf)) {
NeilBrowndafb20f2012-03-19 12:46:39 +11003902 rdev_for_each(rdev, mddev)
NeilBrowne93f68a2010-06-15 09:36:03 +01003903 if (rdev->raid_disk >= 0)
3904 rdev->new_raid_disk = rdev->raid_disk * 2;
Krzysztof Wojcik02214dc2011-02-04 14:18:26 +01003905 conf->barrier = 1;
3906 }
3907
Trela, Maciejdab8b292010-03-08 16:02:45 +11003908 return conf;
3909}
3910
NeilBrownfd01b882011-10-11 16:47:53 +11003911static void *raid10_takeover(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003912{
NeilBrowne373ab12011-10-11 16:48:59 +11003913 struct r0conf *raid0_conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003914
3915 /* raid10 can take over:
3916 * raid0 - providing it has only two drives
3917 */
3918 if (mddev->level == 0) {
3919 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11003920 raid0_conf = mddev->private;
3921 if (raid0_conf->nr_strip_zones > 1) {
NeilBrown128595e2010-05-03 14:47:14 +10003922 printk(KERN_ERR "md/raid10:%s: cannot takeover raid 0"
3923 " with more than one zone.\n",
3924 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11003925 return ERR_PTR(-EINVAL);
3926 }
3927 return raid10_takeover_raid0(mddev);
3928 }
3929 return ERR_PTR(-EINVAL);
3930}
3931
NeilBrown3ea7daa2012-05-22 13:53:47 +10003932static int raid10_check_reshape(struct mddev *mddev)
3933{
3934 /* Called when there is a request to change
3935 * - layout (to ->new_layout)
3936 * - chunk size (to ->new_chunk_sectors)
3937 * - raid_disks (by delta_disks)
3938 * or when trying to restart a reshape that was ongoing.
3939 *
3940 * We need to validate the request and possibly allocate
3941 * space if that might be an issue later.
3942 *
3943 * Currently we reject any reshape of a 'far' mode array,
3944 * allow chunk size to change if new is generally acceptable,
3945 * allow raid_disks to increase, and allow
3946 * a switch between 'near' mode and 'offset' mode.
3947 */
3948 struct r10conf *conf = mddev->private;
3949 struct geom geo;
3950
3951 if (conf->geo.far_copies != 1 && !conf->geo.far_offset)
3952 return -EINVAL;
3953
3954 if (setup_geo(&geo, mddev, geo_start) != conf->copies)
3955 /* mustn't change number of copies */
3956 return -EINVAL;
3957 if (geo.far_copies > 1 && !geo.far_offset)
3958 /* Cannot switch to 'far' mode */
3959 return -EINVAL;
3960
3961 if (mddev->array_sectors & geo.chunk_mask)
3962 /* not factor of array size */
3963 return -EINVAL;
3964
NeilBrown3ea7daa2012-05-22 13:53:47 +10003965 if (!enough(conf, -1))
3966 return -EINVAL;
3967
3968 kfree(conf->mirrors_new);
3969 conf->mirrors_new = NULL;
3970 if (mddev->delta_disks > 0) {
3971 /* allocate new 'mirrors' list */
3972 conf->mirrors_new = kzalloc(
Jonathan Brassowdc280d982012-07-31 10:03:52 +10003973 sizeof(struct raid10_info)
NeilBrown3ea7daa2012-05-22 13:53:47 +10003974 *(mddev->raid_disks +
3975 mddev->delta_disks),
3976 GFP_KERNEL);
3977 if (!conf->mirrors_new)
3978 return -ENOMEM;
3979 }
3980 return 0;
3981}
3982
3983/*
3984 * Need to check if array has failed when deciding whether to:
3985 * - start an array
3986 * - remove non-faulty devices
3987 * - add a spare
3988 * - allow a reshape
3989 * This determination is simple when no reshape is happening.
3990 * However if there is a reshape, we need to carefully check
3991 * both the before and after sections.
3992 * This is because some failed devices may only affect one
3993 * of the two sections, and some non-in_sync devices may
3994 * be insync in the section most affected by failed devices.
3995 */
3996static int calc_degraded(struct r10conf *conf)
3997{
3998 int degraded, degraded2;
3999 int i;
4000
4001 rcu_read_lock();
4002 degraded = 0;
4003 /* 'prev' section first */
4004 for (i = 0; i < conf->prev.raid_disks; i++) {
4005 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
4006 if (!rdev || test_bit(Faulty, &rdev->flags))
4007 degraded++;
4008 else if (!test_bit(In_sync, &rdev->flags))
4009 /* When we can reduce the number of devices in
4010 * an array, this might not contribute to
4011 * 'degraded'. It does now.
4012 */
4013 degraded++;
4014 }
4015 rcu_read_unlock();
4016 if (conf->geo.raid_disks == conf->prev.raid_disks)
4017 return degraded;
4018 rcu_read_lock();
4019 degraded2 = 0;
4020 for (i = 0; i < conf->geo.raid_disks; i++) {
4021 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
4022 if (!rdev || test_bit(Faulty, &rdev->flags))
4023 degraded2++;
4024 else if (!test_bit(In_sync, &rdev->flags)) {
4025 /* If reshape is increasing the number of devices,
4026 * this section has already been recovered, so
4027 * it doesn't contribute to degraded.
4028 * else it does.
4029 */
4030 if (conf->geo.raid_disks <= conf->prev.raid_disks)
4031 degraded2++;
4032 }
4033 }
4034 rcu_read_unlock();
4035 if (degraded2 > degraded)
4036 return degraded2;
4037 return degraded;
4038}
4039
4040static int raid10_start_reshape(struct mddev *mddev)
4041{
4042 /* A 'reshape' has been requested. This commits
4043 * the various 'new' fields and sets MD_RECOVER_RESHAPE
4044 * This also checks if there are enough spares and adds them
4045 * to the array.
4046 * We currently require enough spares to make the final
4047 * array non-degraded. We also require that the difference
4048 * between old and new data_offset - on each device - is
4049 * enough that we never risk over-writing.
4050 */
4051
4052 unsigned long before_length, after_length;
4053 sector_t min_offset_diff = 0;
4054 int first = 1;
4055 struct geom new;
4056 struct r10conf *conf = mddev->private;
4057 struct md_rdev *rdev;
4058 int spares = 0;
NeilBrownbb63a702012-05-22 13:55:28 +10004059 int ret;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004060
4061 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
4062 return -EBUSY;
4063
4064 if (setup_geo(&new, mddev, geo_start) != conf->copies)
4065 return -EINVAL;
4066
4067 before_length = ((1 << conf->prev.chunk_shift) *
4068 conf->prev.far_copies);
4069 after_length = ((1 << conf->geo.chunk_shift) *
4070 conf->geo.far_copies);
4071
4072 rdev_for_each(rdev, mddev) {
4073 if (!test_bit(In_sync, &rdev->flags)
4074 && !test_bit(Faulty, &rdev->flags))
4075 spares++;
4076 if (rdev->raid_disk >= 0) {
4077 long long diff = (rdev->new_data_offset
4078 - rdev->data_offset);
4079 if (!mddev->reshape_backwards)
4080 diff = -diff;
4081 if (diff < 0)
4082 diff = 0;
4083 if (first || diff < min_offset_diff)
4084 min_offset_diff = diff;
4085 }
4086 }
4087
4088 if (max(before_length, after_length) > min_offset_diff)
4089 return -EINVAL;
4090
4091 if (spares < mddev->delta_disks)
4092 return -EINVAL;
4093
4094 conf->offset_diff = min_offset_diff;
4095 spin_lock_irq(&conf->device_lock);
4096 if (conf->mirrors_new) {
4097 memcpy(conf->mirrors_new, conf->mirrors,
Jonathan Brassowdc280d982012-07-31 10:03:52 +10004098 sizeof(struct raid10_info)*conf->prev.raid_disks);
NeilBrown3ea7daa2012-05-22 13:53:47 +10004099 smp_mb();
4100 kfree(conf->mirrors_old); /* FIXME and elsewhere */
4101 conf->mirrors_old = conf->mirrors;
4102 conf->mirrors = conf->mirrors_new;
4103 conf->mirrors_new = NULL;
4104 }
4105 setup_geo(&conf->geo, mddev, geo_start);
4106 smp_mb();
4107 if (mddev->reshape_backwards) {
4108 sector_t size = raid10_size(mddev, 0, 0);
4109 if (size < mddev->array_sectors) {
4110 spin_unlock_irq(&conf->device_lock);
4111 printk(KERN_ERR "md/raid10:%s: array size must be reduce before number of disks\n",
4112 mdname(mddev));
4113 return -EINVAL;
4114 }
4115 mddev->resync_max_sectors = size;
4116 conf->reshape_progress = size;
4117 } else
4118 conf->reshape_progress = 0;
4119 spin_unlock_irq(&conf->device_lock);
4120
NeilBrownbb63a702012-05-22 13:55:28 +10004121 if (mddev->delta_disks && mddev->bitmap) {
4122 ret = bitmap_resize(mddev->bitmap,
4123 raid10_size(mddev, 0,
4124 conf->geo.raid_disks),
4125 0, 0);
4126 if (ret)
4127 goto abort;
4128 }
NeilBrown3ea7daa2012-05-22 13:53:47 +10004129 if (mddev->delta_disks > 0) {
4130 rdev_for_each(rdev, mddev)
4131 if (rdev->raid_disk < 0 &&
4132 !test_bit(Faulty, &rdev->flags)) {
4133 if (raid10_add_disk(mddev, rdev) == 0) {
4134 if (rdev->raid_disk >=
4135 conf->prev.raid_disks)
4136 set_bit(In_sync, &rdev->flags);
4137 else
4138 rdev->recovery_offset = 0;
4139
4140 if (sysfs_link_rdev(mddev, rdev))
4141 /* Failure here is OK */;
4142 }
4143 } else if (rdev->raid_disk >= conf->prev.raid_disks
4144 && !test_bit(Faulty, &rdev->flags)) {
4145 /* This is a spare that was manually added */
4146 set_bit(In_sync, &rdev->flags);
4147 }
4148 }
4149 /* When a reshape changes the number of devices,
4150 * ->degraded is measured against the larger of the
4151 * pre and post numbers.
4152 */
4153 spin_lock_irq(&conf->device_lock);
4154 mddev->degraded = calc_degraded(conf);
4155 spin_unlock_irq(&conf->device_lock);
4156 mddev->raid_disks = conf->geo.raid_disks;
4157 mddev->reshape_position = conf->reshape_progress;
4158 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4159
4160 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
4161 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
4162 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
4163 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
4164
4165 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
4166 "reshape");
4167 if (!mddev->sync_thread) {
NeilBrownbb63a702012-05-22 13:55:28 +10004168 ret = -EAGAIN;
4169 goto abort;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004170 }
4171 conf->reshape_checkpoint = jiffies;
4172 md_wakeup_thread(mddev->sync_thread);
4173 md_new_event(mddev);
4174 return 0;
NeilBrownbb63a702012-05-22 13:55:28 +10004175
4176abort:
4177 mddev->recovery = 0;
4178 spin_lock_irq(&conf->device_lock);
4179 conf->geo = conf->prev;
4180 mddev->raid_disks = conf->geo.raid_disks;
4181 rdev_for_each(rdev, mddev)
4182 rdev->new_data_offset = rdev->data_offset;
4183 smp_wmb();
4184 conf->reshape_progress = MaxSector;
4185 mddev->reshape_position = MaxSector;
4186 spin_unlock_irq(&conf->device_lock);
4187 return ret;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004188}
4189
4190/* Calculate the last device-address that could contain
4191 * any block from the chunk that includes the array-address 's'
4192 * and report the next address.
4193 * i.e. the address returned will be chunk-aligned and after
4194 * any data that is in the chunk containing 's'.
4195 */
4196static sector_t last_dev_address(sector_t s, struct geom *geo)
4197{
4198 s = (s | geo->chunk_mask) + 1;
4199 s >>= geo->chunk_shift;
4200 s *= geo->near_copies;
4201 s = DIV_ROUND_UP_SECTOR_T(s, geo->raid_disks);
4202 s *= geo->far_copies;
4203 s <<= geo->chunk_shift;
4204 return s;
4205}
4206
4207/* Calculate the first device-address that could contain
4208 * any block from the chunk that includes the array-address 's'.
4209 * This too will be the start of a chunk
4210 */
4211static sector_t first_dev_address(sector_t s, struct geom *geo)
4212{
4213 s >>= geo->chunk_shift;
4214 s *= geo->near_copies;
4215 sector_div(s, geo->raid_disks);
4216 s *= geo->far_copies;
4217 s <<= geo->chunk_shift;
4218 return s;
4219}
4220
4221static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr,
4222 int *skipped)
4223{
4224 /* We simply copy at most one chunk (smallest of old and new)
4225 * at a time, possibly less if that exceeds RESYNC_PAGES,
4226 * or we hit a bad block or something.
4227 * This might mean we pause for normal IO in the middle of
4228 * a chunk, but that is not a problem was mddev->reshape_position
4229 * can record any location.
4230 *
4231 * If we will want to write to a location that isn't
4232 * yet recorded as 'safe' (i.e. in metadata on disk) then
4233 * we need to flush all reshape requests and update the metadata.
4234 *
4235 * When reshaping forwards (e.g. to more devices), we interpret
4236 * 'safe' as the earliest block which might not have been copied
4237 * down yet. We divide this by previous stripe size and multiply
4238 * by previous stripe length to get lowest device offset that we
4239 * cannot write to yet.
4240 * We interpret 'sector_nr' as an address that we want to write to.
4241 * From this we use last_device_address() to find where we might
4242 * write to, and first_device_address on the 'safe' position.
4243 * If this 'next' write position is after the 'safe' position,
4244 * we must update the metadata to increase the 'safe' position.
4245 *
4246 * When reshaping backwards, we round in the opposite direction
4247 * and perform the reverse test: next write position must not be
4248 * less than current safe position.
4249 *
4250 * In all this the minimum difference in data offsets
4251 * (conf->offset_diff - always positive) allows a bit of slack,
4252 * so next can be after 'safe', but not by more than offset_disk
4253 *
4254 * We need to prepare all the bios here before we start any IO
4255 * to ensure the size we choose is acceptable to all devices.
4256 * The means one for each copy for write-out and an extra one for
4257 * read-in.
4258 * We store the read-in bio in ->master_bio and the others in
4259 * ->devs[x].bio and ->devs[x].repl_bio.
4260 */
4261 struct r10conf *conf = mddev->private;
4262 struct r10bio *r10_bio;
4263 sector_t next, safe, last;
4264 int max_sectors;
4265 int nr_sectors;
4266 int s;
4267 struct md_rdev *rdev;
4268 int need_flush = 0;
4269 struct bio *blist;
4270 struct bio *bio, *read_bio;
4271 int sectors_done = 0;
4272
4273 if (sector_nr == 0) {
4274 /* If restarting in the middle, skip the initial sectors */
4275 if (mddev->reshape_backwards &&
4276 conf->reshape_progress < raid10_size(mddev, 0, 0)) {
4277 sector_nr = (raid10_size(mddev, 0, 0)
4278 - conf->reshape_progress);
4279 } else if (!mddev->reshape_backwards &&
4280 conf->reshape_progress > 0)
4281 sector_nr = conf->reshape_progress;
4282 if (sector_nr) {
4283 mddev->curr_resync_completed = sector_nr;
4284 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
4285 *skipped = 1;
4286 return sector_nr;
4287 }
4288 }
4289
4290 /* We don't use sector_nr to track where we are up to
4291 * as that doesn't work well for ->reshape_backwards.
4292 * So just use ->reshape_progress.
4293 */
4294 if (mddev->reshape_backwards) {
4295 /* 'next' is the earliest device address that we might
4296 * write to for this chunk in the new layout
4297 */
4298 next = first_dev_address(conf->reshape_progress - 1,
4299 &conf->geo);
4300
4301 /* 'safe' is the last device address that we might read from
4302 * in the old layout after a restart
4303 */
4304 safe = last_dev_address(conf->reshape_safe - 1,
4305 &conf->prev);
4306
4307 if (next + conf->offset_diff < safe)
4308 need_flush = 1;
4309
4310 last = conf->reshape_progress - 1;
4311 sector_nr = last & ~(sector_t)(conf->geo.chunk_mask
4312 & conf->prev.chunk_mask);
4313 if (sector_nr + RESYNC_BLOCK_SIZE/512 < last)
4314 sector_nr = last + 1 - RESYNC_BLOCK_SIZE/512;
4315 } else {
4316 /* 'next' is after the last device address that we
4317 * might write to for this chunk in the new layout
4318 */
4319 next = last_dev_address(conf->reshape_progress, &conf->geo);
4320
4321 /* 'safe' is the earliest device address that we might
4322 * read from in the old layout after a restart
4323 */
4324 safe = first_dev_address(conf->reshape_safe, &conf->prev);
4325
4326 /* Need to update metadata if 'next' might be beyond 'safe'
4327 * as that would possibly corrupt data
4328 */
4329 if (next > safe + conf->offset_diff)
4330 need_flush = 1;
4331
4332 sector_nr = conf->reshape_progress;
4333 last = sector_nr | (conf->geo.chunk_mask
4334 & conf->prev.chunk_mask);
4335
4336 if (sector_nr + RESYNC_BLOCK_SIZE/512 <= last)
4337 last = sector_nr + RESYNC_BLOCK_SIZE/512 - 1;
4338 }
4339
4340 if (need_flush ||
4341 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
4342 /* Need to update reshape_position in metadata */
4343 wait_barrier(conf);
4344 mddev->reshape_position = conf->reshape_progress;
4345 if (mddev->reshape_backwards)
4346 mddev->curr_resync_completed = raid10_size(mddev, 0, 0)
4347 - conf->reshape_progress;
4348 else
4349 mddev->curr_resync_completed = conf->reshape_progress;
4350 conf->reshape_checkpoint = jiffies;
4351 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4352 md_wakeup_thread(mddev->thread);
4353 wait_event(mddev->sb_wait, mddev->flags == 0 ||
4354 kthread_should_stop());
4355 conf->reshape_safe = mddev->reshape_position;
4356 allow_barrier(conf);
4357 }
4358
4359read_more:
4360 /* Now schedule reads for blocks from sector_nr to last */
4361 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
4362 raise_barrier(conf, sectors_done != 0);
4363 atomic_set(&r10_bio->remaining, 0);
4364 r10_bio->mddev = mddev;
4365 r10_bio->sector = sector_nr;
4366 set_bit(R10BIO_IsReshape, &r10_bio->state);
4367 r10_bio->sectors = last - sector_nr + 1;
4368 rdev = read_balance(conf, r10_bio, &max_sectors);
4369 BUG_ON(!test_bit(R10BIO_Previous, &r10_bio->state));
4370
4371 if (!rdev) {
4372 /* Cannot read from here, so need to record bad blocks
4373 * on all the target devices.
4374 */
4375 // FIXME
4376 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
4377 return sectors_done;
4378 }
4379
4380 read_bio = bio_alloc_mddev(GFP_KERNEL, RESYNC_PAGES, mddev);
4381
4382 read_bio->bi_bdev = rdev->bdev;
4383 read_bio->bi_sector = (r10_bio->devs[r10_bio->read_slot].addr
4384 + rdev->data_offset);
4385 read_bio->bi_private = r10_bio;
4386 read_bio->bi_end_io = end_sync_read;
4387 read_bio->bi_rw = READ;
4388 read_bio->bi_flags &= ~(BIO_POOL_MASK - 1);
4389 read_bio->bi_flags |= 1 << BIO_UPTODATE;
4390 read_bio->bi_vcnt = 0;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004391 read_bio->bi_size = 0;
4392 r10_bio->master_bio = read_bio;
4393 r10_bio->read_slot = r10_bio->devs[r10_bio->read_slot].devnum;
4394
4395 /* Now find the locations in the new layout */
4396 __raid10_find_phys(&conf->geo, r10_bio);
4397
4398 blist = read_bio;
4399 read_bio->bi_next = NULL;
4400
4401 for (s = 0; s < conf->copies*2; s++) {
4402 struct bio *b;
4403 int d = r10_bio->devs[s/2].devnum;
4404 struct md_rdev *rdev2;
4405 if (s&1) {
4406 rdev2 = conf->mirrors[d].replacement;
4407 b = r10_bio->devs[s/2].repl_bio;
4408 } else {
4409 rdev2 = conf->mirrors[d].rdev;
4410 b = r10_bio->devs[s/2].bio;
4411 }
4412 if (!rdev2 || test_bit(Faulty, &rdev2->flags))
4413 continue;
Kent Overstreet8be185f2012-09-06 14:14:43 -07004414
4415 bio_reset(b);
NeilBrown3ea7daa2012-05-22 13:53:47 +10004416 b->bi_bdev = rdev2->bdev;
4417 b->bi_sector = r10_bio->devs[s/2].addr + rdev2->new_data_offset;
4418 b->bi_private = r10_bio;
4419 b->bi_end_io = end_reshape_write;
4420 b->bi_rw = WRITE;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004421 b->bi_next = blist;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004422 blist = b;
4423 }
4424
4425 /* Now add as many pages as possible to all of these bios. */
4426
4427 nr_sectors = 0;
4428 for (s = 0 ; s < max_sectors; s += PAGE_SIZE >> 9) {
4429 struct page *page = r10_bio->devs[0].bio->bi_io_vec[s/(PAGE_SIZE>>9)].bv_page;
4430 int len = (max_sectors - s) << 9;
4431 if (len > PAGE_SIZE)
4432 len = PAGE_SIZE;
4433 for (bio = blist; bio ; bio = bio->bi_next) {
4434 struct bio *bio2;
4435 if (bio_add_page(bio, page, len, 0))
4436 continue;
4437
4438 /* Didn't fit, must stop */
4439 for (bio2 = blist;
4440 bio2 && bio2 != bio;
4441 bio2 = bio2->bi_next) {
4442 /* Remove last page from this bio */
4443 bio2->bi_vcnt--;
4444 bio2->bi_size -= len;
4445 bio2->bi_flags &= ~(1<<BIO_SEG_VALID);
4446 }
4447 goto bio_full;
4448 }
4449 sector_nr += len >> 9;
4450 nr_sectors += len >> 9;
4451 }
4452bio_full:
4453 r10_bio->sectors = nr_sectors;
4454
4455 /* Now submit the read */
4456 md_sync_acct(read_bio->bi_bdev, r10_bio->sectors);
4457 atomic_inc(&r10_bio->remaining);
4458 read_bio->bi_next = NULL;
4459 generic_make_request(read_bio);
4460 sector_nr += nr_sectors;
4461 sectors_done += nr_sectors;
4462 if (sector_nr <= last)
4463 goto read_more;
4464
4465 /* Now that we have done the whole section we can
4466 * update reshape_progress
4467 */
4468 if (mddev->reshape_backwards)
4469 conf->reshape_progress -= sectors_done;
4470 else
4471 conf->reshape_progress += sectors_done;
4472
4473 return sectors_done;
4474}
4475
4476static void end_reshape_request(struct r10bio *r10_bio);
4477static int handle_reshape_read_error(struct mddev *mddev,
4478 struct r10bio *r10_bio);
4479static void reshape_request_write(struct mddev *mddev, struct r10bio *r10_bio)
4480{
4481 /* Reshape read completed. Hopefully we have a block
4482 * to write out.
4483 * If we got a read error then we do sync 1-page reads from
4484 * elsewhere until we find the data - or give up.
4485 */
4486 struct r10conf *conf = mddev->private;
4487 int s;
4488
4489 if (!test_bit(R10BIO_Uptodate, &r10_bio->state))
4490 if (handle_reshape_read_error(mddev, r10_bio) < 0) {
4491 /* Reshape has been aborted */
4492 md_done_sync(mddev, r10_bio->sectors, 0);
4493 return;
4494 }
4495
4496 /* We definitely have the data in the pages, schedule the
4497 * writes.
4498 */
4499 atomic_set(&r10_bio->remaining, 1);
4500 for (s = 0; s < conf->copies*2; s++) {
4501 struct bio *b;
4502 int d = r10_bio->devs[s/2].devnum;
4503 struct md_rdev *rdev;
4504 if (s&1) {
4505 rdev = conf->mirrors[d].replacement;
4506 b = r10_bio->devs[s/2].repl_bio;
4507 } else {
4508 rdev = conf->mirrors[d].rdev;
4509 b = r10_bio->devs[s/2].bio;
4510 }
4511 if (!rdev || test_bit(Faulty, &rdev->flags))
4512 continue;
4513 atomic_inc(&rdev->nr_pending);
4514 md_sync_acct(b->bi_bdev, r10_bio->sectors);
4515 atomic_inc(&r10_bio->remaining);
4516 b->bi_next = NULL;
4517 generic_make_request(b);
4518 }
4519 end_reshape_request(r10_bio);
4520}
4521
4522static void end_reshape(struct r10conf *conf)
4523{
4524 if (test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery))
4525 return;
4526
4527 spin_lock_irq(&conf->device_lock);
4528 conf->prev = conf->geo;
4529 md_finish_reshape(conf->mddev);
4530 smp_wmb();
4531 conf->reshape_progress = MaxSector;
4532 spin_unlock_irq(&conf->device_lock);
4533
4534 /* read-ahead size must cover two whole stripes, which is
4535 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
4536 */
4537 if (conf->mddev->queue) {
4538 int stripe = conf->geo.raid_disks *
4539 ((conf->mddev->chunk_sectors << 9) / PAGE_SIZE);
4540 stripe /= conf->geo.near_copies;
4541 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
4542 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
4543 }
4544 conf->fullsync = 0;
4545}
4546
4547
4548static int handle_reshape_read_error(struct mddev *mddev,
4549 struct r10bio *r10_bio)
4550{
4551 /* Use sync reads to get the blocks from somewhere else */
4552 int sectors = r10_bio->sectors;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004553 struct r10conf *conf = mddev->private;
NeilBrowne0ee7782012-08-18 09:51:42 +10004554 struct {
4555 struct r10bio r10_bio;
4556 struct r10dev devs[conf->copies];
4557 } on_stack;
4558 struct r10bio *r10b = &on_stack.r10_bio;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004559 int slot = 0;
4560 int idx = 0;
4561 struct bio_vec *bvec = r10_bio->master_bio->bi_io_vec;
4562
NeilBrowne0ee7782012-08-18 09:51:42 +10004563 r10b->sector = r10_bio->sector;
4564 __raid10_find_phys(&conf->prev, r10b);
NeilBrown3ea7daa2012-05-22 13:53:47 +10004565
4566 while (sectors) {
4567 int s = sectors;
4568 int success = 0;
4569 int first_slot = slot;
4570
4571 if (s > (PAGE_SIZE >> 9))
4572 s = PAGE_SIZE >> 9;
4573
4574 while (!success) {
NeilBrowne0ee7782012-08-18 09:51:42 +10004575 int d = r10b->devs[slot].devnum;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004576 struct md_rdev *rdev = conf->mirrors[d].rdev;
4577 sector_t addr;
4578 if (rdev == NULL ||
4579 test_bit(Faulty, &rdev->flags) ||
4580 !test_bit(In_sync, &rdev->flags))
4581 goto failed;
4582
NeilBrowne0ee7782012-08-18 09:51:42 +10004583 addr = r10b->devs[slot].addr + idx * PAGE_SIZE;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004584 success = sync_page_io(rdev,
4585 addr,
4586 s << 9,
4587 bvec[idx].bv_page,
4588 READ, false);
4589 if (success)
4590 break;
4591 failed:
4592 slot++;
4593 if (slot >= conf->copies)
4594 slot = 0;
4595 if (slot == first_slot)
4596 break;
4597 }
4598 if (!success) {
4599 /* couldn't read this block, must give up */
4600 set_bit(MD_RECOVERY_INTR,
4601 &mddev->recovery);
4602 return -EIO;
4603 }
4604 sectors -= s;
4605 idx++;
4606 }
4607 return 0;
4608}
4609
4610static void end_reshape_write(struct bio *bio, int error)
4611{
4612 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
4613 struct r10bio *r10_bio = bio->bi_private;
4614 struct mddev *mddev = r10_bio->mddev;
4615 struct r10conf *conf = mddev->private;
4616 int d;
4617 int slot;
4618 int repl;
4619 struct md_rdev *rdev = NULL;
4620
4621 d = find_bio_disk(conf, r10_bio, bio, &slot, &repl);
4622 if (repl)
4623 rdev = conf->mirrors[d].replacement;
4624 if (!rdev) {
4625 smp_mb();
4626 rdev = conf->mirrors[d].rdev;
4627 }
4628
4629 if (!uptodate) {
4630 /* FIXME should record badblock */
4631 md_error(mddev, rdev);
4632 }
4633
4634 rdev_dec_pending(rdev, mddev);
4635 end_reshape_request(r10_bio);
4636}
4637
4638static void end_reshape_request(struct r10bio *r10_bio)
4639{
4640 if (!atomic_dec_and_test(&r10_bio->remaining))
4641 return;
4642 md_done_sync(r10_bio->mddev, r10_bio->sectors, 1);
4643 bio_put(r10_bio->master_bio);
4644 put_buf(r10_bio);
4645}
4646
4647static void raid10_finish_reshape(struct mddev *mddev)
4648{
4649 struct r10conf *conf = mddev->private;
4650
4651 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
4652 return;
4653
4654 if (mddev->delta_disks > 0) {
4655 sector_t size = raid10_size(mddev, 0, 0);
4656 md_set_array_sectors(mddev, size);
4657 if (mddev->recovery_cp > mddev->resync_max_sectors) {
4658 mddev->recovery_cp = mddev->resync_max_sectors;
4659 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
4660 }
4661 mddev->resync_max_sectors = size;
4662 set_capacity(mddev->gendisk, mddev->array_sectors);
4663 revalidate_disk(mddev->gendisk);
NeilBrown63aced62012-05-22 13:55:33 +10004664 } else {
4665 int d;
4666 for (d = conf->geo.raid_disks ;
4667 d < conf->geo.raid_disks - mddev->delta_disks;
4668 d++) {
4669 struct md_rdev *rdev = conf->mirrors[d].rdev;
4670 if (rdev)
4671 clear_bit(In_sync, &rdev->flags);
4672 rdev = conf->mirrors[d].replacement;
4673 if (rdev)
4674 clear_bit(In_sync, &rdev->flags);
4675 }
NeilBrown3ea7daa2012-05-22 13:53:47 +10004676 }
4677 mddev->layout = mddev->new_layout;
4678 mddev->chunk_sectors = 1 << conf->geo.chunk_shift;
4679 mddev->reshape_position = MaxSector;
4680 mddev->delta_disks = 0;
4681 mddev->reshape_backwards = 0;
4682}
4683
NeilBrown84fc4b52011-10-11 16:49:58 +11004684static struct md_personality raid10_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685{
4686 .name = "raid10",
NeilBrown2604b702006-01-06 00:20:36 -08004687 .level = 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 .owner = THIS_MODULE,
4689 .make_request = make_request,
4690 .run = run,
4691 .stop = stop,
4692 .status = status,
4693 .error_handler = error,
4694 .hot_add_disk = raid10_add_disk,
4695 .hot_remove_disk= raid10_remove_disk,
4696 .spare_active = raid10_spare_active,
4697 .sync_request = sync_request,
NeilBrown6cce3b232006-01-06 00:20:16 -08004698 .quiesce = raid10_quiesce,
Dan Williams80c3a6c2009-03-17 18:10:40 -07004699 .size = raid10_size,
NeilBrown006a09a2012-03-19 12:46:40 +11004700 .resize = raid10_resize,
Trela, Maciejdab8b292010-03-08 16:02:45 +11004701 .takeover = raid10_takeover,
NeilBrown3ea7daa2012-05-22 13:53:47 +10004702 .check_reshape = raid10_check_reshape,
4703 .start_reshape = raid10_start_reshape,
4704 .finish_reshape = raid10_finish_reshape,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705};
4706
4707static int __init raid_init(void)
4708{
NeilBrown2604b702006-01-06 00:20:36 -08004709 return register_md_personality(&raid10_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710}
4711
4712static void raid_exit(void)
4713{
NeilBrown2604b702006-01-06 00:20:36 -08004714 unregister_md_personality(&raid10_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715}
4716
4717module_init(raid_init);
4718module_exit(raid_exit);
4719MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11004720MODULE_DESCRIPTION("RAID10 (striped mirror) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721MODULE_ALIAS("md-personality-9"); /* RAID10 */
NeilBrownd9d166c2006-01-06 00:20:51 -08004722MODULE_ALIAS("md-raid10");
NeilBrown2604b702006-01-06 00:20:36 -08004723MODULE_ALIAS("md-level-10");
NeilBrown34db0cd2011-10-11 16:50:01 +11004724
4725module_param(max_queued_requests, int, S_IRUGO|S_IWUSR);