blob: 434586d431150f47f0a6158f8852eec997dc919b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * raid10.c : Multiple Devices driver for Linux
3 *
4 * Copyright (C) 2000-2004 Neil Brown
5 *
6 * RAID-10 support for md.
7 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008 * Base on code in raid1.c. See raid1.c for further copyright information.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * You should have received a copy of the GNU General Public License
17 * (for example /usr/src/linux/COPYING); if not, write to the Free
18 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Stephen Rothwell25570722008-10-15 09:09:21 +110022#include <linux/delay.h>
NeilBrownbff61972009-03-31 14:33:13 +110023#include <linux/blkdev.h>
Paul Gortmaker056075c2011-07-03 13:58:33 -040024#include <linux/module.h>
NeilBrownbff61972009-03-31 14:33:13 +110025#include <linux/seq_file.h>
Christian Dietrich8bda4702011-07-27 11:00:36 +100026#include <linux/ratelimit.h>
NeilBrown3ea7daa2012-05-22 13:53:47 +100027#include <linux/kthread.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110028#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110029#include "raid10.h"
Trela, Maciejdab8b292010-03-08 16:02:45 +110030#include "raid0.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110031#include "bitmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/*
34 * RAID10 provides a combination of RAID0 and RAID1 functionality.
35 * The layout of data is defined by
36 * chunk_size
37 * raid_disks
38 * near_copies (stored in low byte of layout)
39 * far_copies (stored in second byte of layout)
NeilBrownc93983b2006-06-26 00:27:41 -070040 * far_offset (stored in bit 16 of layout )
Jonathan Brassow475901a2013-02-21 13:28:10 +110041 * use_far_sets (stored in bit 17 of layout )
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 *
Jonathan Brassow475901a2013-02-21 13:28:10 +110043 * The data to be stored is divided into chunks using chunksize. Each device
44 * is divided into far_copies sections. In each section, chunks are laid out
45 * in a style similar to raid0, but near_copies copies of each chunk is stored
46 * (each on a different drive). The starting device for each section is offset
47 * near_copies from the starting device of the previous section. Thus there
48 * are (near_copies * far_copies) of each chunk, and each is on a different
49 * drive. near_copies and far_copies must be at least one, and their product
50 * is at most raid_disks.
NeilBrownc93983b2006-06-26 00:27:41 -070051 *
52 * If far_offset is true, then the far_copies are handled a bit differently.
Jonathan Brassow475901a2013-02-21 13:28:10 +110053 * The copies are still in different stripes, but instead of being very far
54 * apart on disk, there are adjacent stripes.
55 *
56 * The far and offset algorithms are handled slightly differently if
57 * 'use_far_sets' is true. In this case, the array's devices are grouped into
58 * sets that are (near_copies * far_copies) in size. The far copied stripes
59 * are still shifted by 'near_copies' devices, but this shifting stays confined
60 * to the set rather than the entire array. This is done to improve the number
61 * of device combinations that can fail without causing the array to fail.
62 * Example 'far' algorithm w/o 'use_far_sets' (each letter represents a chunk
63 * on a device):
64 * A B C D A B C D E
65 * ... ...
66 * D A B C E A B C D
67 * Example 'far' algorithm w/ 'use_far_sets' enabled (sets illustrated w/ []'s):
68 * [A B] [C D] [A B] [C D E]
69 * |...| |...| |...| | ... |
70 * [B A] [D C] [B A] [E C D]
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 */
72
73/*
74 * Number of guaranteed r10bios in case of extreme VM load:
75 */
76#define NR_RAID10_BIOS 256
77
Jonathan Brassow473e87c2012-07-31 10:03:52 +100078/* when we get a read error on a read-only array, we redirect to another
79 * device without failing the first device, or trying to over-write to
80 * correct the read error. To keep track of bad blocks on a per-bio
81 * level, we store IO_BLOCKED in the appropriate 'bios' pointer
82 */
83#define IO_BLOCKED ((struct bio *)1)
84/* When we successfully write to a known bad-block, we need to remove the
85 * bad-block marking which must be done from process context. So we record
86 * the success by setting devs[n].bio to IO_MADE_GOOD
87 */
88#define IO_MADE_GOOD ((struct bio *)2)
89
90#define BIO_SPECIAL(bio) ((unsigned long)bio <= 2)
91
92/* When there are this many requests queued to be written by
NeilBrown34db0cd2011-10-11 16:50:01 +110093 * the raid10 thread, we become 'congested' to provide back-pressure
94 * for writeback.
95 */
96static int max_queued_requests = 1024;
97
NeilBrowne879a872011-10-11 16:49:02 +110098static void allow_barrier(struct r10conf *conf);
99static void lower_barrier(struct r10conf *conf);
NeilBrownfae8cc52012-02-14 11:10:10 +1100100static int enough(struct r10conf *conf, int ignore);
NeilBrown3ea7daa2012-05-22 13:53:47 +1000101static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr,
102 int *skipped);
103static void reshape_request_write(struct mddev *mddev, struct r10bio *r10_bio);
104static void end_reshape_write(struct bio *bio, int error);
105static void end_reshape(struct r10conf *conf);
NeilBrown0a27ec92006-01-06 00:20:13 -0800106
Al Virodd0fc662005-10-07 07:46:04 +0100107static void * r10bio_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
NeilBrowne879a872011-10-11 16:49:02 +1100109 struct r10conf *conf = data;
NeilBrown9f2c9d12011-10-11 16:48:43 +1100110 int size = offsetof(struct r10bio, devs[conf->copies]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
NeilBrown69335ef2011-12-23 10:17:54 +1100112 /* allocate a r10bio with room for raid_disks entries in the
113 * bios array */
Jens Axboe7eaceac2011-03-10 08:52:07 +0100114 return kzalloc(size, gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117static void r10bio_pool_free(void *r10_bio, void *data)
118{
119 kfree(r10_bio);
120}
121
NeilBrown0310fa22008-08-05 15:54:14 +1000122/* Maximum size of each resync request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define RESYNC_BLOCK_SIZE (64*1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define RESYNC_PAGES ((RESYNC_BLOCK_SIZE + PAGE_SIZE-1) / PAGE_SIZE)
NeilBrown0310fa22008-08-05 15:54:14 +1000125/* amount of memory to reserve for resync requests */
126#define RESYNC_WINDOW (1024*1024)
127/* maximum number of concurrent requests, memory permitting */
128#define RESYNC_DEPTH (32*1024*1024/RESYNC_BLOCK_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/*
131 * When performing a resync, we need to read and compare, so
132 * we need as many pages are there are copies.
133 * When performing a recovery, we need 2 bios, one for read,
134 * one for write (we recover only one drive per r10buf)
135 *
136 */
Al Virodd0fc662005-10-07 07:46:04 +0100137static void * r10buf_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
NeilBrowne879a872011-10-11 16:49:02 +1100139 struct r10conf *conf = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 struct page *page;
NeilBrown9f2c9d12011-10-11 16:48:43 +1100141 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 struct bio *bio;
143 int i, j;
144 int nalloc;
145
146 r10_bio = r10bio_pool_alloc(gfp_flags, conf);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100147 if (!r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
NeilBrown3ea7daa2012-05-22 13:53:47 +1000150 if (test_bit(MD_RECOVERY_SYNC, &conf->mddev->recovery) ||
151 test_bit(MD_RECOVERY_RESHAPE, &conf->mddev->recovery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 nalloc = conf->copies; /* resync */
153 else
154 nalloc = 2; /* recovery */
155
156 /*
157 * Allocate bios.
158 */
159 for (j = nalloc ; j-- ; ) {
NeilBrown67465572010-10-26 17:33:54 +1100160 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (!bio)
162 goto out_free_bio;
163 r10_bio->devs[j].bio = bio;
NeilBrown69335ef2011-12-23 10:17:54 +1100164 if (!conf->have_replacement)
165 continue;
166 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
167 if (!bio)
168 goto out_free_bio;
169 r10_bio->devs[j].repl_bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
171 /*
172 * Allocate RESYNC_PAGES data pages and attach them
173 * where needed.
174 */
175 for (j = 0 ; j < nalloc; j++) {
NeilBrown69335ef2011-12-23 10:17:54 +1100176 struct bio *rbio = r10_bio->devs[j].repl_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 bio = r10_bio->devs[j].bio;
178 for (i = 0; i < RESYNC_PAGES; i++) {
NeilBrown3ea7daa2012-05-22 13:53:47 +1000179 if (j > 0 && !test_bit(MD_RECOVERY_SYNC,
180 &conf->mddev->recovery)) {
181 /* we can share bv_page's during recovery
182 * and reshape */
Namhyung Kimc65060a2011-07-18 17:38:49 +1000183 struct bio *rbio = r10_bio->devs[0].bio;
184 page = rbio->bi_io_vec[i].bv_page;
185 get_page(page);
186 } else
187 page = alloc_page(gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (unlikely(!page))
189 goto out_free_pages;
190
191 bio->bi_io_vec[i].bv_page = page;
NeilBrown69335ef2011-12-23 10:17:54 +1100192 if (rbio)
193 rbio->bi_io_vec[i].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195 }
196
197 return r10_bio;
198
199out_free_pages:
200 for ( ; i > 0 ; i--)
NeilBrown1345b1d2006-01-06 00:20:40 -0800201 safe_put_page(bio->bi_io_vec[i-1].bv_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 while (j--)
203 for (i = 0; i < RESYNC_PAGES ; i++)
NeilBrown1345b1d2006-01-06 00:20:40 -0800204 safe_put_page(r10_bio->devs[j].bio->bi_io_vec[i].bv_page);
majianpeng5fdd2cf2012-05-22 13:55:03 +1000205 j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206out_free_bio:
majianpeng5fdd2cf2012-05-22 13:55:03 +1000207 for ( ; j < nalloc; j++) {
208 if (r10_bio->devs[j].bio)
209 bio_put(r10_bio->devs[j].bio);
NeilBrown69335ef2011-12-23 10:17:54 +1100210 if (r10_bio->devs[j].repl_bio)
211 bio_put(r10_bio->devs[j].repl_bio);
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 r10bio_pool_free(r10_bio, conf);
214 return NULL;
215}
216
217static void r10buf_pool_free(void *__r10_bio, void *data)
218{
219 int i;
NeilBrowne879a872011-10-11 16:49:02 +1100220 struct r10conf *conf = data;
NeilBrown9f2c9d12011-10-11 16:48:43 +1100221 struct r10bio *r10bio = __r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 int j;
223
224 for (j=0; j < conf->copies; j++) {
225 struct bio *bio = r10bio->devs[j].bio;
226 if (bio) {
227 for (i = 0; i < RESYNC_PAGES; i++) {
NeilBrown1345b1d2006-01-06 00:20:40 -0800228 safe_put_page(bio->bi_io_vec[i].bv_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 bio->bi_io_vec[i].bv_page = NULL;
230 }
231 bio_put(bio);
232 }
NeilBrown69335ef2011-12-23 10:17:54 +1100233 bio = r10bio->devs[j].repl_bio;
234 if (bio)
235 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237 r10bio_pool_free(r10bio, conf);
238}
239
NeilBrowne879a872011-10-11 16:49:02 +1100240static void put_all_bios(struct r10conf *conf, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 int i;
243
244 for (i = 0; i < conf->copies; i++) {
245 struct bio **bio = & r10_bio->devs[i].bio;
NeilBrown749c55e2011-07-28 11:39:24 +1000246 if (!BIO_SPECIAL(*bio))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 bio_put(*bio);
248 *bio = NULL;
NeilBrown69335ef2011-12-23 10:17:54 +1100249 bio = &r10_bio->devs[i].repl_bio;
250 if (r10_bio->read_slot < 0 && !BIO_SPECIAL(*bio))
251 bio_put(*bio);
252 *bio = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254}
255
NeilBrown9f2c9d12011-10-11 16:48:43 +1100256static void free_r10bio(struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
NeilBrowne879a872011-10-11 16:49:02 +1100258 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 put_all_bios(conf, r10_bio);
261 mempool_free(r10_bio, conf->r10bio_pool);
262}
263
NeilBrown9f2c9d12011-10-11 16:48:43 +1100264static void put_buf(struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
NeilBrowne879a872011-10-11 16:49:02 +1100266 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 mempool_free(r10_bio, conf->r10buf_pool);
269
NeilBrown0a27ec92006-01-06 00:20:13 -0800270 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
NeilBrown9f2c9d12011-10-11 16:48:43 +1100273static void reschedule_retry(struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 unsigned long flags;
NeilBrownfd01b882011-10-11 16:47:53 +1100276 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +1100277 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 spin_lock_irqsave(&conf->device_lock, flags);
280 list_add(&r10_bio->retry_list, &conf->retry_list);
NeilBrown4443ae12006-01-06 00:20:28 -0800281 conf->nr_queued ++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 spin_unlock_irqrestore(&conf->device_lock, flags);
283
Arthur Jones388667b2008-07-25 12:03:38 -0700284 /* wake up frozen array... */
285 wake_up(&conf->wait_barrier);
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 md_wakeup_thread(mddev->thread);
288}
289
290/*
291 * raid_end_bio_io() is called when we have finished servicing a mirrored
292 * operation and are ready to return a success/failure code to the buffer
293 * cache layer.
294 */
NeilBrown9f2c9d12011-10-11 16:48:43 +1100295static void raid_end_bio_io(struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 struct bio *bio = r10_bio->master_bio;
NeilBrown856e08e2011-07-28 11:39:23 +1000298 int done;
NeilBrowne879a872011-10-11 16:49:02 +1100299 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
NeilBrown856e08e2011-07-28 11:39:23 +1000301 if (bio->bi_phys_segments) {
302 unsigned long flags;
303 spin_lock_irqsave(&conf->device_lock, flags);
304 bio->bi_phys_segments--;
305 done = (bio->bi_phys_segments == 0);
306 spin_unlock_irqrestore(&conf->device_lock, flags);
307 } else
308 done = 1;
309 if (!test_bit(R10BIO_Uptodate, &r10_bio->state))
310 clear_bit(BIO_UPTODATE, &bio->bi_flags);
311 if (done) {
312 bio_endio(bio, 0);
313 /*
314 * Wake up any possible resync thread that waits for the device
315 * to go idle.
316 */
317 allow_barrier(conf);
318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 free_r10bio(r10_bio);
320}
321
322/*
323 * Update disk head position estimator based on IRQ completion info.
324 */
NeilBrown9f2c9d12011-10-11 16:48:43 +1100325static inline void update_head_pos(int slot, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
NeilBrowne879a872011-10-11 16:49:02 +1100327 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 conf->mirrors[r10_bio->devs[slot].devnum].head_position =
330 r10_bio->devs[slot].addr + (r10_bio->sectors);
331}
332
Namhyung Kim778ca012011-07-18 17:38:47 +1000333/*
334 * Find the disk number which triggered given bio
335 */
NeilBrowne879a872011-10-11 16:49:02 +1100336static int find_bio_disk(struct r10conf *conf, struct r10bio *r10_bio,
NeilBrown69335ef2011-12-23 10:17:54 +1100337 struct bio *bio, int *slotp, int *replp)
Namhyung Kim778ca012011-07-18 17:38:47 +1000338{
339 int slot;
NeilBrown69335ef2011-12-23 10:17:54 +1100340 int repl = 0;
Namhyung Kim778ca012011-07-18 17:38:47 +1000341
NeilBrown69335ef2011-12-23 10:17:54 +1100342 for (slot = 0; slot < conf->copies; slot++) {
Namhyung Kim778ca012011-07-18 17:38:47 +1000343 if (r10_bio->devs[slot].bio == bio)
344 break;
NeilBrown69335ef2011-12-23 10:17:54 +1100345 if (r10_bio->devs[slot].repl_bio == bio) {
346 repl = 1;
347 break;
348 }
349 }
Namhyung Kim778ca012011-07-18 17:38:47 +1000350
351 BUG_ON(slot == conf->copies);
352 update_head_pos(slot, r10_bio);
353
NeilBrown749c55e2011-07-28 11:39:24 +1000354 if (slotp)
355 *slotp = slot;
NeilBrown69335ef2011-12-23 10:17:54 +1100356 if (replp)
357 *replp = repl;
Namhyung Kim778ca012011-07-18 17:38:47 +1000358 return r10_bio->devs[slot].devnum;
359}
360
NeilBrown6712ecf2007-09-27 12:47:43 +0200361static void raid10_end_read_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9f2c9d12011-10-11 16:48:43 +1100364 struct r10bio *r10_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 int slot, dev;
NeilBrownabbf0982011-12-23 10:17:54 +1100366 struct md_rdev *rdev;
NeilBrowne879a872011-10-11 16:49:02 +1100367 struct r10conf *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 slot = r10_bio->read_slot;
371 dev = r10_bio->devs[slot].devnum;
NeilBrownabbf0982011-12-23 10:17:54 +1100372 rdev = r10_bio->devs[slot].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 /*
374 * this branch is our 'one mirror IO has finished' event handler:
375 */
NeilBrown4443ae12006-01-06 00:20:28 -0800376 update_head_pos(slot, r10_bio);
377
378 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 /*
380 * Set R10BIO_Uptodate in our master bio, so that
381 * we will return a good error code to the higher
382 * levels even if IO on some other mirrored buffer fails.
383 *
384 * The 'master' represents the composite IO operation to
385 * user-side. So if something waits for IO, then it will
386 * wait for the 'master' bio.
387 */
388 set_bit(R10BIO_Uptodate, &r10_bio->state);
NeilBrownfae8cc52012-02-14 11:10:10 +1100389 } else {
390 /* If all other devices that store this block have
391 * failed, we want to return the error upwards rather
392 * than fail the last device. Here we redefine
393 * "uptodate" to mean "Don't want to retry"
394 */
395 unsigned long flags;
396 spin_lock_irqsave(&conf->device_lock, flags);
397 if (!enough(conf, rdev->raid_disk))
398 uptodate = 1;
399 spin_unlock_irqrestore(&conf->device_lock, flags);
400 }
401 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 raid_end_bio_io(r10_bio);
NeilBrownabbf0982011-12-23 10:17:54 +1100403 rdev_dec_pending(rdev, conf->mddev);
NeilBrown4443ae12006-01-06 00:20:28 -0800404 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 /*
NeilBrown7c4e06f2011-05-11 14:53:17 +1000406 * oops, read error - keep the refcount on the rdev
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 */
408 char b[BDEVNAME_SIZE];
Christian Dietrich8bda4702011-07-27 11:00:36 +1000409 printk_ratelimited(KERN_ERR
410 "md/raid10:%s: %s: rescheduling sector %llu\n",
411 mdname(conf->mddev),
NeilBrownabbf0982011-12-23 10:17:54 +1100412 bdevname(rdev->bdev, b),
Christian Dietrich8bda4702011-07-27 11:00:36 +1000413 (unsigned long long)r10_bio->sector);
NeilBrown856e08e2011-07-28 11:39:23 +1000414 set_bit(R10BIO_ReadError, &r10_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 reschedule_retry(r10_bio);
416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
NeilBrown9f2c9d12011-10-11 16:48:43 +1100419static void close_write(struct r10bio *r10_bio)
NeilBrownbd870a12011-07-28 11:39:24 +1000420{
421 /* clear the bitmap if all writes complete successfully */
422 bitmap_endwrite(r10_bio->mddev->bitmap, r10_bio->sector,
423 r10_bio->sectors,
424 !test_bit(R10BIO_Degraded, &r10_bio->state),
425 0);
426 md_write_end(r10_bio->mddev);
427}
428
NeilBrown9f2c9d12011-10-11 16:48:43 +1100429static void one_write_done(struct r10bio *r10_bio)
NeilBrown19d5f832011-09-10 17:21:17 +1000430{
431 if (atomic_dec_and_test(&r10_bio->remaining)) {
432 if (test_bit(R10BIO_WriteError, &r10_bio->state))
433 reschedule_retry(r10_bio);
434 else {
435 close_write(r10_bio);
436 if (test_bit(R10BIO_MadeGood, &r10_bio->state))
437 reschedule_retry(r10_bio);
438 else
439 raid_end_bio_io(r10_bio);
440 }
441 }
442}
443
NeilBrown6712ecf2007-09-27 12:47:43 +0200444static void raid10_end_write_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9f2c9d12011-10-11 16:48:43 +1100447 struct r10bio *r10_bio = bio->bi_private;
Namhyung Kim778ca012011-07-18 17:38:47 +1000448 int dev;
NeilBrown749c55e2011-07-28 11:39:24 +1000449 int dec_rdev = 1;
NeilBrowne879a872011-10-11 16:49:02 +1100450 struct r10conf *conf = r10_bio->mddev->private;
NeilBrown475b0322011-12-23 10:17:55 +1100451 int slot, repl;
NeilBrown4ca40c22011-12-23 10:17:55 +1100452 struct md_rdev *rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
NeilBrown475b0322011-12-23 10:17:55 +1100454 dev = find_bio_disk(conf, r10_bio, bio, &slot, &repl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
NeilBrown475b0322011-12-23 10:17:55 +1100456 if (repl)
457 rdev = conf->mirrors[dev].replacement;
NeilBrown4ca40c22011-12-23 10:17:55 +1100458 if (!rdev) {
459 smp_rmb();
460 repl = 0;
NeilBrown475b0322011-12-23 10:17:55 +1100461 rdev = conf->mirrors[dev].rdev;
NeilBrown4ca40c22011-12-23 10:17:55 +1100462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 /*
464 * this branch is our 'one mirror IO has finished' event handler:
465 */
NeilBrown6cce3b22006-01-06 00:20:16 -0800466 if (!uptodate) {
NeilBrown475b0322011-12-23 10:17:55 +1100467 if (repl)
468 /* Never record new bad blocks to replacement,
469 * just fail it.
470 */
471 md_error(rdev->mddev, rdev);
472 else {
473 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +1100474 if (!test_and_set_bit(WantReplacement, &rdev->flags))
475 set_bit(MD_RECOVERY_NEEDED,
476 &rdev->mddev->recovery);
NeilBrown475b0322011-12-23 10:17:55 +1100477 set_bit(R10BIO_WriteError, &r10_bio->state);
478 dec_rdev = 0;
479 }
NeilBrown749c55e2011-07-28 11:39:24 +1000480 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 /*
482 * Set R10BIO_Uptodate in our master bio, so that
483 * we will return a good error code for to the higher
484 * levels even if IO on some other mirrored buffer fails.
485 *
486 * The 'master' represents the composite IO operation to
487 * user-side. So if something waits for IO, then it will
488 * wait for the 'master' bio.
489 */
NeilBrown749c55e2011-07-28 11:39:24 +1000490 sector_t first_bad;
491 int bad_sectors;
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 set_bit(R10BIO_Uptodate, &r10_bio->state);
494
NeilBrown749c55e2011-07-28 11:39:24 +1000495 /* Maybe we can clear some bad blocks. */
NeilBrown475b0322011-12-23 10:17:55 +1100496 if (is_badblock(rdev,
NeilBrown749c55e2011-07-28 11:39:24 +1000497 r10_bio->devs[slot].addr,
498 r10_bio->sectors,
499 &first_bad, &bad_sectors)) {
500 bio_put(bio);
NeilBrown475b0322011-12-23 10:17:55 +1100501 if (repl)
502 r10_bio->devs[slot].repl_bio = IO_MADE_GOOD;
503 else
504 r10_bio->devs[slot].bio = IO_MADE_GOOD;
NeilBrown749c55e2011-07-28 11:39:24 +1000505 dec_rdev = 0;
506 set_bit(R10BIO_MadeGood, &r10_bio->state);
507 }
508 }
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 /*
511 *
512 * Let's see if all mirrored write operations have finished
513 * already.
514 */
NeilBrown19d5f832011-09-10 17:21:17 +1000515 one_write_done(r10_bio);
NeilBrown749c55e2011-07-28 11:39:24 +1000516 if (dec_rdev)
NeilBrown884162d2012-11-22 15:12:09 +1100517 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/*
521 * RAID10 layout manager
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300522 * As well as the chunksize and raid_disks count, there are two
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 * parameters: near_copies and far_copies.
524 * near_copies * far_copies must be <= raid_disks.
525 * Normally one of these will be 1.
526 * If both are 1, we get raid0.
527 * If near_copies == raid_disks, we get raid1.
528 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300529 * Chunks are laid out in raid0 style with near_copies copies of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * first chunk, followed by near_copies copies of the next chunk and
531 * so on.
532 * If far_copies > 1, then after 1/far_copies of the array has been assigned
533 * as described above, we start again with a device offset of near_copies.
534 * So we effectively have another copy of the whole array further down all
535 * the drives, but with blocks on different drives.
536 * With this layout, and block is never stored twice on the one device.
537 *
538 * raid10_find_phys finds the sector offset of a given virtual sector
NeilBrownc93983b2006-06-26 00:27:41 -0700539 * on each device that it is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 *
541 * raid10_find_virt does the reverse mapping, from a device and a
542 * sector offset to a virtual address
543 */
544
NeilBrownf8c9e742012-05-21 09:28:33 +1000545static void __raid10_find_phys(struct geom *geo, struct r10bio *r10bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 int n,f;
548 sector_t sector;
549 sector_t chunk;
550 sector_t stripe;
551 int dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 int slot = 0;
Jonathan Brassow9a3152a2013-02-21 13:28:10 +1100553 int last_far_set_start, last_far_set_size;
554
555 last_far_set_start = (geo->raid_disks / geo->far_set_size) - 1;
556 last_far_set_start *= geo->far_set_size;
557
558 last_far_set_size = geo->far_set_size;
559 last_far_set_size += (geo->raid_disks % geo->far_set_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 /* now calculate first sector/dev */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000562 chunk = r10bio->sector >> geo->chunk_shift;
563 sector = r10bio->sector & geo->chunk_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
NeilBrown5cf00fc2012-05-21 09:28:20 +1000565 chunk *= geo->near_copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 stripe = chunk;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000567 dev = sector_div(stripe, geo->raid_disks);
568 if (geo->far_offset)
569 stripe *= geo->far_copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
NeilBrown5cf00fc2012-05-21 09:28:20 +1000571 sector += stripe << geo->chunk_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 /* and calculate all the others */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000574 for (n = 0; n < geo->near_copies; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 int d = dev;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100576 int set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 sector_t s = sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 r10bio->devs[slot].devnum = d;
Jonathan Brassow4c0ca262013-02-21 13:28:09 +1100579 r10bio->devs[slot].addr = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 slot++;
581
NeilBrown5cf00fc2012-05-21 09:28:20 +1000582 for (f = 1; f < geo->far_copies; f++) {
Jonathan Brassow475901a2013-02-21 13:28:10 +1100583 set = d / geo->far_set_size;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000584 d += geo->near_copies;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100585
Jonathan Brassow9a3152a2013-02-21 13:28:10 +1100586 if ((geo->raid_disks % geo->far_set_size) &&
587 (d > last_far_set_start)) {
588 d -= last_far_set_start;
589 d %= last_far_set_size;
590 d += last_far_set_start;
591 } else {
592 d %= geo->far_set_size;
593 d += geo->far_set_size * set;
594 }
NeilBrown5cf00fc2012-05-21 09:28:20 +1000595 s += geo->stride;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 r10bio->devs[slot].devnum = d;
597 r10bio->devs[slot].addr = s;
598 slot++;
599 }
600 dev++;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000601 if (dev >= geo->raid_disks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 dev = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000603 sector += (geo->chunk_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605 }
NeilBrownf8c9e742012-05-21 09:28:33 +1000606}
607
608static void raid10_find_phys(struct r10conf *conf, struct r10bio *r10bio)
609{
610 struct geom *geo = &conf->geo;
611
612 if (conf->reshape_progress != MaxSector &&
613 ((r10bio->sector >= conf->reshape_progress) !=
614 conf->mddev->reshape_backwards)) {
615 set_bit(R10BIO_Previous, &r10bio->state);
616 geo = &conf->prev;
617 } else
618 clear_bit(R10BIO_Previous, &r10bio->state);
619
620 __raid10_find_phys(geo, r10bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
NeilBrowne879a872011-10-11 16:49:02 +1100623static sector_t raid10_find_virt(struct r10conf *conf, sector_t sector, int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 sector_t offset, chunk, vchunk;
NeilBrownf8c9e742012-05-21 09:28:33 +1000626 /* Never use conf->prev as this is only called during resync
627 * or recovery, so reshape isn't happening
628 */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000629 struct geom *geo = &conf->geo;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100630 int far_set_start = (dev / geo->far_set_size) * geo->far_set_size;
631 int far_set_size = geo->far_set_size;
Jonathan Brassow9a3152a2013-02-21 13:28:10 +1100632 int last_far_set_start;
633
634 if (geo->raid_disks % geo->far_set_size) {
635 last_far_set_start = (geo->raid_disks / geo->far_set_size) - 1;
636 last_far_set_start *= geo->far_set_size;
637
638 if (dev >= last_far_set_start) {
639 far_set_size = geo->far_set_size;
640 far_set_size += (geo->raid_disks % geo->far_set_size);
641 far_set_start = last_far_set_start;
642 }
643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
NeilBrown5cf00fc2012-05-21 09:28:20 +1000645 offset = sector & geo->chunk_mask;
646 if (geo->far_offset) {
NeilBrownc93983b2006-06-26 00:27:41 -0700647 int fc;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000648 chunk = sector >> geo->chunk_shift;
649 fc = sector_div(chunk, geo->far_copies);
650 dev -= fc * geo->near_copies;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100651 if (dev < far_set_start)
652 dev += far_set_size;
NeilBrownc93983b2006-06-26 00:27:41 -0700653 } else {
NeilBrown5cf00fc2012-05-21 09:28:20 +1000654 while (sector >= geo->stride) {
655 sector -= geo->stride;
Jonathan Brassow475901a2013-02-21 13:28:10 +1100656 if (dev < (geo->near_copies + far_set_start))
657 dev += far_set_size - geo->near_copies;
NeilBrownc93983b2006-06-26 00:27:41 -0700658 else
NeilBrown5cf00fc2012-05-21 09:28:20 +1000659 dev -= geo->near_copies;
NeilBrownc93983b2006-06-26 00:27:41 -0700660 }
NeilBrown5cf00fc2012-05-21 09:28:20 +1000661 chunk = sector >> geo->chunk_shift;
NeilBrownc93983b2006-06-26 00:27:41 -0700662 }
NeilBrown5cf00fc2012-05-21 09:28:20 +1000663 vchunk = chunk * geo->raid_disks + dev;
664 sector_div(vchunk, geo->near_copies);
665 return (vchunk << geo->chunk_shift) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
668/**
669 * raid10_mergeable_bvec -- tell bio layer if a two requests can be merged
670 * @q: request queue
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200671 * @bvm: properties of new bio
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 * @biovec: the request that could be merged to it.
673 *
674 * Return amount of bytes we can accept at this offset
NeilBrown050b6612012-03-19 12:46:39 +1100675 * This requires checking for end-of-chunk if near_copies != raid_disks,
676 * and for subordinate merge_bvec_fns if merge_check_needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200678static int raid10_mergeable_bvec(struct request_queue *q,
679 struct bvec_merge_data *bvm,
680 struct bio_vec *biovec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
NeilBrownfd01b882011-10-11 16:47:53 +1100682 struct mddev *mddev = q->queuedata;
NeilBrown050b6612012-03-19 12:46:39 +1100683 struct r10conf *conf = mddev->private;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200684 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 int max;
NeilBrown3ea7daa2012-05-22 13:53:47 +1000686 unsigned int chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200687 unsigned int bio_sectors = bvm->bi_size >> 9;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000688 struct geom *geo = &conf->geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
NeilBrown3ea7daa2012-05-22 13:53:47 +1000690 chunk_sectors = (conf->geo.chunk_mask & conf->prev.chunk_mask) + 1;
NeilBrownf8c9e742012-05-21 09:28:33 +1000691 if (conf->reshape_progress != MaxSector &&
692 ((sector >= conf->reshape_progress) !=
693 conf->mddev->reshape_backwards))
694 geo = &conf->prev;
695
NeilBrown5cf00fc2012-05-21 09:28:20 +1000696 if (geo->near_copies < geo->raid_disks) {
NeilBrown050b6612012-03-19 12:46:39 +1100697 max = (chunk_sectors - ((sector & (chunk_sectors - 1))
698 + bio_sectors)) << 9;
699 if (max < 0)
700 /* bio_add cannot handle a negative return */
701 max = 0;
702 if (max <= biovec->bv_len && bio_sectors == 0)
703 return biovec->bv_len;
704 } else
705 max = biovec->bv_len;
706
707 if (mddev->merge_check_needed) {
NeilBrowne0ee7782012-08-18 09:51:42 +1000708 struct {
709 struct r10bio r10_bio;
710 struct r10dev devs[conf->copies];
711 } on_stack;
712 struct r10bio *r10_bio = &on_stack.r10_bio;
NeilBrown050b6612012-03-19 12:46:39 +1100713 int s;
NeilBrownf8c9e742012-05-21 09:28:33 +1000714 if (conf->reshape_progress != MaxSector) {
715 /* Cannot give any guidance during reshape */
716 if (max <= biovec->bv_len && bio_sectors == 0)
717 return biovec->bv_len;
718 return 0;
719 }
NeilBrowne0ee7782012-08-18 09:51:42 +1000720 r10_bio->sector = sector;
721 raid10_find_phys(conf, r10_bio);
NeilBrown050b6612012-03-19 12:46:39 +1100722 rcu_read_lock();
723 for (s = 0; s < conf->copies; s++) {
NeilBrowne0ee7782012-08-18 09:51:42 +1000724 int disk = r10_bio->devs[s].devnum;
NeilBrown050b6612012-03-19 12:46:39 +1100725 struct md_rdev *rdev = rcu_dereference(
726 conf->mirrors[disk].rdev);
727 if (rdev && !test_bit(Faulty, &rdev->flags)) {
728 struct request_queue *q =
729 bdev_get_queue(rdev->bdev);
730 if (q->merge_bvec_fn) {
NeilBrowne0ee7782012-08-18 09:51:42 +1000731 bvm->bi_sector = r10_bio->devs[s].addr
NeilBrown050b6612012-03-19 12:46:39 +1100732 + rdev->data_offset;
733 bvm->bi_bdev = rdev->bdev;
734 max = min(max, q->merge_bvec_fn(
735 q, bvm, biovec));
736 }
737 }
738 rdev = rcu_dereference(conf->mirrors[disk].replacement);
739 if (rdev && !test_bit(Faulty, &rdev->flags)) {
740 struct request_queue *q =
741 bdev_get_queue(rdev->bdev);
742 if (q->merge_bvec_fn) {
NeilBrowne0ee7782012-08-18 09:51:42 +1000743 bvm->bi_sector = r10_bio->devs[s].addr
NeilBrown050b6612012-03-19 12:46:39 +1100744 + rdev->data_offset;
745 bvm->bi_bdev = rdev->bdev;
746 max = min(max, q->merge_bvec_fn(
747 q, bvm, biovec));
748 }
749 }
750 }
751 rcu_read_unlock();
752 }
753 return max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
756/*
757 * This routine returns the disk from which the requested read should
758 * be done. There is a per-array 'next expected sequential IO' sector
759 * number - if this matches on the next IO then we use the last disk.
760 * There is also a per-disk 'last know head position' sector that is
761 * maintained from IRQ contexts, both the normal and the resync IO
762 * completion handlers update this position correctly. If there is no
763 * perfect sequential match then we pick the disk whose head is closest.
764 *
765 * If there are 2 mirrors in the same 2 devices, performance degrades
766 * because position is mirror, not device based.
767 *
768 * The rdev for the device selected will have nr_pending incremented.
769 */
770
771/*
772 * FIXME: possibly should rethink readbalancing and do it differently
773 * depending on near_copies / far_copies geometry.
774 */
NeilBrown96c3fd12011-12-23 10:17:54 +1100775static struct md_rdev *read_balance(struct r10conf *conf,
776 struct r10bio *r10_bio,
777 int *max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000779 const sector_t this_sector = r10_bio->sector;
NeilBrown56d99122011-05-11 14:27:03 +1000780 int disk, slot;
NeilBrown856e08e2011-07-28 11:39:23 +1000781 int sectors = r10_bio->sectors;
782 int best_good_sectors;
NeilBrown56d99122011-05-11 14:27:03 +1000783 sector_t new_distance, best_dist;
Jonathan Brassow3bbae042012-07-31 10:03:52 +1000784 struct md_rdev *best_rdev, *rdev = NULL;
NeilBrown56d99122011-05-11 14:27:03 +1000785 int do_balance;
786 int best_slot;
NeilBrown5cf00fc2012-05-21 09:28:20 +1000787 struct geom *geo = &conf->geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 raid10_find_phys(conf, r10_bio);
790 rcu_read_lock();
NeilBrown56d99122011-05-11 14:27:03 +1000791retry:
NeilBrown856e08e2011-07-28 11:39:23 +1000792 sectors = r10_bio->sectors;
NeilBrown56d99122011-05-11 14:27:03 +1000793 best_slot = -1;
NeilBrownabbf0982011-12-23 10:17:54 +1100794 best_rdev = NULL;
NeilBrown56d99122011-05-11 14:27:03 +1000795 best_dist = MaxSector;
NeilBrown856e08e2011-07-28 11:39:23 +1000796 best_good_sectors = 0;
NeilBrown56d99122011-05-11 14:27:03 +1000797 do_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 /*
799 * Check if we can balance. We can balance on the whole
NeilBrown6cce3b22006-01-06 00:20:16 -0800800 * device if no resync is going on (recovery is ok), or below
801 * the resync window. We take the first readable disk when
802 * above the resync window.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 */
804 if (conf->mddev->recovery_cp < MaxSector
NeilBrown56d99122011-05-11 14:27:03 +1000805 && (this_sector + sectors >= conf->next_resync))
806 do_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
NeilBrown56d99122011-05-11 14:27:03 +1000808 for (slot = 0; slot < conf->copies ; slot++) {
NeilBrown856e08e2011-07-28 11:39:23 +1000809 sector_t first_bad;
810 int bad_sectors;
811 sector_t dev_sector;
812
NeilBrown56d99122011-05-11 14:27:03 +1000813 if (r10_bio->devs[slot].bio == IO_BLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 continue;
NeilBrown56d99122011-05-11 14:27:03 +1000815 disk = r10_bio->devs[slot].devnum;
NeilBrownabbf0982011-12-23 10:17:54 +1100816 rdev = rcu_dereference(conf->mirrors[disk].replacement);
817 if (rdev == NULL || test_bit(Faulty, &rdev->flags) ||
NeilBrown050b6612012-03-19 12:46:39 +1100818 test_bit(Unmerged, &rdev->flags) ||
NeilBrownabbf0982011-12-23 10:17:54 +1100819 r10_bio->devs[slot].addr + sectors > rdev->recovery_offset)
820 rdev = rcu_dereference(conf->mirrors[disk].rdev);
NeilBrown050b6612012-03-19 12:46:39 +1100821 if (rdev == NULL ||
822 test_bit(Faulty, &rdev->flags) ||
823 test_bit(Unmerged, &rdev->flags))
NeilBrownabbf0982011-12-23 10:17:54 +1100824 continue;
825 if (!test_bit(In_sync, &rdev->flags) &&
826 r10_bio->devs[slot].addr + sectors > rdev->recovery_offset)
NeilBrown56d99122011-05-11 14:27:03 +1000827 continue;
828
NeilBrown856e08e2011-07-28 11:39:23 +1000829 dev_sector = r10_bio->devs[slot].addr;
830 if (is_badblock(rdev, dev_sector, sectors,
831 &first_bad, &bad_sectors)) {
832 if (best_dist < MaxSector)
833 /* Already have a better slot */
834 continue;
835 if (first_bad <= dev_sector) {
836 /* Cannot read here. If this is the
837 * 'primary' device, then we must not read
838 * beyond 'bad_sectors' from another device.
839 */
840 bad_sectors -= (dev_sector - first_bad);
841 if (!do_balance && sectors > bad_sectors)
842 sectors = bad_sectors;
843 if (best_good_sectors > sectors)
844 best_good_sectors = sectors;
845 } else {
846 sector_t good_sectors =
847 first_bad - dev_sector;
848 if (good_sectors > best_good_sectors) {
849 best_good_sectors = good_sectors;
850 best_slot = slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100851 best_rdev = rdev;
NeilBrown856e08e2011-07-28 11:39:23 +1000852 }
853 if (!do_balance)
854 /* Must read from here */
855 break;
856 }
857 continue;
858 } else
859 best_good_sectors = sectors;
860
NeilBrown56d99122011-05-11 14:27:03 +1000861 if (!do_balance)
862 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
NeilBrown22dfdf52005-11-28 13:44:09 -0800864 /* This optimisation is debatable, and completely destroys
865 * sequential read speed for 'far copies' arrays. So only
866 * keep it for 'near' arrays, and review those later.
867 */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000868 if (geo->near_copies > 1 && !atomic_read(&rdev->nr_pending))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 break;
Keld Simonsen8ed3a192008-03-04 14:29:34 -0800870
871 /* for far > 1 always use the lowest address */
NeilBrown5cf00fc2012-05-21 09:28:20 +1000872 if (geo->far_copies > 1)
NeilBrown56d99122011-05-11 14:27:03 +1000873 new_distance = r10_bio->devs[slot].addr;
Keld Simonsen8ed3a192008-03-04 14:29:34 -0800874 else
NeilBrown56d99122011-05-11 14:27:03 +1000875 new_distance = abs(r10_bio->devs[slot].addr -
876 conf->mirrors[disk].head_position);
877 if (new_distance < best_dist) {
878 best_dist = new_distance;
879 best_slot = slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100880 best_rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
882 }
NeilBrownabbf0982011-12-23 10:17:54 +1100883 if (slot >= conf->copies) {
NeilBrown56d99122011-05-11 14:27:03 +1000884 slot = best_slot;
NeilBrownabbf0982011-12-23 10:17:54 +1100885 rdev = best_rdev;
886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
NeilBrown56d99122011-05-11 14:27:03 +1000888 if (slot >= 0) {
NeilBrown56d99122011-05-11 14:27:03 +1000889 atomic_inc(&rdev->nr_pending);
890 if (test_bit(Faulty, &rdev->flags)) {
891 /* Cannot risk returning a device that failed
892 * before we inc'ed nr_pending
893 */
894 rdev_dec_pending(rdev, conf->mddev);
895 goto retry;
896 }
897 r10_bio->read_slot = slot;
898 } else
NeilBrown96c3fd12011-12-23 10:17:54 +1100899 rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 rcu_read_unlock();
NeilBrown856e08e2011-07-28 11:39:23 +1000901 *max_sectors = best_good_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
NeilBrown96c3fd12011-12-23 10:17:54 +1100903 return rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +1000906int md_raid10_congested(struct mddev *mddev, int bits)
NeilBrown0d129222006-10-03 01:15:54 -0700907{
NeilBrowne879a872011-10-11 16:49:02 +1100908 struct r10conf *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700909 int i, ret = 0;
910
NeilBrown34db0cd2011-10-11 16:50:01 +1100911 if ((bits & (1 << BDI_async_congested)) &&
912 conf->pending_count >= max_queued_requests)
913 return 1;
914
NeilBrown0d129222006-10-03 01:15:54 -0700915 rcu_read_lock();
NeilBrownf8c9e742012-05-21 09:28:33 +1000916 for (i = 0;
917 (i < conf->geo.raid_disks || i < conf->prev.raid_disks)
918 && ret == 0;
919 i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100920 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
NeilBrown0d129222006-10-03 01:15:54 -0700921 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200922 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700923
924 ret |= bdi_congested(&q->backing_dev_info, bits);
925 }
926 }
927 rcu_read_unlock();
928 return ret;
929}
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +1000930EXPORT_SYMBOL_GPL(md_raid10_congested);
931
932static int raid10_congested(void *data, int bits)
933{
934 struct mddev *mddev = data;
935
936 return mddev_congested(mddev, bits) ||
937 md_raid10_congested(mddev, bits);
938}
NeilBrown0d129222006-10-03 01:15:54 -0700939
NeilBrowne879a872011-10-11 16:49:02 +1100940static void flush_pending_writes(struct r10conf *conf)
NeilBrowna35e63e2008-03-04 14:29:29 -0800941{
942 /* Any writes that have been queued but are awaiting
943 * bitmap updates get flushed here.
NeilBrowna35e63e2008-03-04 14:29:29 -0800944 */
NeilBrowna35e63e2008-03-04 14:29:29 -0800945 spin_lock_irq(&conf->device_lock);
946
947 if (conf->pending_bio_list.head) {
948 struct bio *bio;
949 bio = bio_list_get(&conf->pending_bio_list);
NeilBrown34db0cd2011-10-11 16:50:01 +1100950 conf->pending_count = 0;
NeilBrowna35e63e2008-03-04 14:29:29 -0800951 spin_unlock_irq(&conf->device_lock);
952 /* flush any pending bitmap writes to disk
953 * before proceeding w/ I/O */
954 bitmap_unplug(conf->mddev->bitmap);
NeilBrown34db0cd2011-10-11 16:50:01 +1100955 wake_up(&conf->wait_barrier);
NeilBrowna35e63e2008-03-04 14:29:29 -0800956
957 while (bio) { /* submit pending writes */
958 struct bio *next = bio->bi_next;
959 bio->bi_next = NULL;
Shaohua Li532a2a32012-10-11 13:30:52 +1100960 if (unlikely((bio->bi_rw & REQ_DISCARD) &&
961 !blk_queue_discard(bdev_get_queue(bio->bi_bdev))))
962 /* Just ignore it */
963 bio_endio(bio, 0);
964 else
965 generic_make_request(bio);
NeilBrowna35e63e2008-03-04 14:29:29 -0800966 bio = next;
967 }
NeilBrowna35e63e2008-03-04 14:29:29 -0800968 } else
969 spin_unlock_irq(&conf->device_lock);
NeilBrowna35e63e2008-03-04 14:29:29 -0800970}
Jens Axboe7eaceac2011-03-10 08:52:07 +0100971
NeilBrown0a27ec92006-01-06 00:20:13 -0800972/* Barriers....
973 * Sometimes we need to suspend IO while we do something else,
974 * either some resync/recovery, or reconfigure the array.
975 * To do this we raise a 'barrier'.
976 * The 'barrier' is a counter that can be raised multiple times
977 * to count how many activities are happening which preclude
978 * normal IO.
979 * We can only raise the barrier if there is no pending IO.
980 * i.e. if nr_pending == 0.
981 * We choose only to raise the barrier if no-one is waiting for the
982 * barrier to go down. This means that as soon as an IO request
983 * is ready, no other operations which require a barrier will start
984 * until the IO request has had a chance.
985 *
986 * So: regular IO calls 'wait_barrier'. When that returns there
987 * is no backgroup IO happening, It must arrange to call
988 * allow_barrier when it has finished its IO.
989 * backgroup IO calls must call raise_barrier. Once that returns
990 * there is no normal IO happeing. It must arrange to call
991 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
NeilBrowne879a872011-10-11 16:49:02 +1100994static void raise_barrier(struct r10conf *conf, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
NeilBrown6cce3b22006-01-06 00:20:16 -0800996 BUG_ON(force && !conf->barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 spin_lock_irq(&conf->resync_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
NeilBrown6cce3b22006-01-06 00:20:16 -0800999 /* Wait until no block IO is waiting (unless 'force') */
1000 wait_event_lock_irq(conf->wait_barrier, force || !conf->nr_waiting,
Lukas Czernereed8c022012-11-30 11:42:40 +01001001 conf->resync_lock);
NeilBrown0a27ec92006-01-06 00:20:13 -08001002
1003 /* block any new IO from starting */
1004 conf->barrier++;
1005
NeilBrownc3b328a2011-04-18 18:25:43 +10001006 /* Now wait for all pending IO to complete */
NeilBrown0a27ec92006-01-06 00:20:13 -08001007 wait_event_lock_irq(conf->wait_barrier,
1008 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
Lukas Czernereed8c022012-11-30 11:42:40 +01001009 conf->resync_lock);
NeilBrown0a27ec92006-01-06 00:20:13 -08001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 spin_unlock_irq(&conf->resync_lock);
1012}
1013
NeilBrowne879a872011-10-11 16:49:02 +11001014static void lower_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -08001015{
1016 unsigned long flags;
1017 spin_lock_irqsave(&conf->resync_lock, flags);
1018 conf->barrier--;
1019 spin_unlock_irqrestore(&conf->resync_lock, flags);
1020 wake_up(&conf->wait_barrier);
1021}
1022
NeilBrowne879a872011-10-11 16:49:02 +11001023static void wait_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -08001024{
1025 spin_lock_irq(&conf->resync_lock);
1026 if (conf->barrier) {
1027 conf->nr_waiting++;
NeilBrownd6b42dc2012-03-19 12:46:38 +11001028 /* Wait for the barrier to drop.
1029 * However if there are already pending
1030 * requests (preventing the barrier from
1031 * rising completely), and the
1032 * pre-process bio queue isn't empty,
1033 * then don't wait, as we need to empty
1034 * that queue to get the nr_pending
1035 * count down.
1036 */
1037 wait_event_lock_irq(conf->wait_barrier,
1038 !conf->barrier ||
1039 (conf->nr_pending &&
1040 current->bio_list &&
1041 !bio_list_empty(current->bio_list)),
Lukas Czernereed8c022012-11-30 11:42:40 +01001042 conf->resync_lock);
NeilBrown0a27ec92006-01-06 00:20:13 -08001043 conf->nr_waiting--;
1044 }
1045 conf->nr_pending++;
1046 spin_unlock_irq(&conf->resync_lock);
1047}
1048
NeilBrowne879a872011-10-11 16:49:02 +11001049static void allow_barrier(struct r10conf *conf)
NeilBrown0a27ec92006-01-06 00:20:13 -08001050{
1051 unsigned long flags;
1052 spin_lock_irqsave(&conf->resync_lock, flags);
1053 conf->nr_pending--;
1054 spin_unlock_irqrestore(&conf->resync_lock, flags);
1055 wake_up(&conf->wait_barrier);
1056}
1057
NeilBrowne879a872011-10-11 16:49:02 +11001058static void freeze_array(struct r10conf *conf)
NeilBrown4443ae12006-01-06 00:20:28 -08001059{
1060 /* stop syncio and normal IO and wait for everything to
NeilBrownf1885932006-01-06 00:20:42 -08001061 * go quiet.
NeilBrown4443ae12006-01-06 00:20:28 -08001062 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -08001063 * wait until nr_pending match nr_queued+1
1064 * This is called in the context of one normal IO request
1065 * that has failed. Thus any sync request that might be pending
1066 * will be blocked by nr_pending, and we need to wait for
1067 * pending IO requests to complete or be queued for re-try.
1068 * Thus the number queued (nr_queued) plus this request (1)
1069 * must match the number of pending IOs (nr_pending) before
1070 * we continue.
NeilBrown4443ae12006-01-06 00:20:28 -08001071 */
1072 spin_lock_irq(&conf->resync_lock);
1073 conf->barrier++;
1074 conf->nr_waiting++;
Lukas Czernereed8c022012-11-30 11:42:40 +01001075 wait_event_lock_irq_cmd(conf->wait_barrier,
1076 conf->nr_pending == conf->nr_queued+1,
1077 conf->resync_lock,
1078 flush_pending_writes(conf));
NeilBrownc3b328a2011-04-18 18:25:43 +10001079
NeilBrown4443ae12006-01-06 00:20:28 -08001080 spin_unlock_irq(&conf->resync_lock);
1081}
1082
NeilBrowne879a872011-10-11 16:49:02 +11001083static void unfreeze_array(struct r10conf *conf)
NeilBrown4443ae12006-01-06 00:20:28 -08001084{
1085 /* reverse the effect of the freeze */
1086 spin_lock_irq(&conf->resync_lock);
1087 conf->barrier--;
1088 conf->nr_waiting--;
1089 wake_up(&conf->wait_barrier);
1090 spin_unlock_irq(&conf->resync_lock);
1091}
1092
NeilBrownf8c9e742012-05-21 09:28:33 +10001093static sector_t choose_data_offset(struct r10bio *r10_bio,
1094 struct md_rdev *rdev)
1095{
1096 if (!test_bit(MD_RECOVERY_RESHAPE, &rdev->mddev->recovery) ||
1097 test_bit(R10BIO_Previous, &r10_bio->state))
1098 return rdev->data_offset;
1099 else
1100 return rdev->new_data_offset;
1101}
1102
NeilBrown57c67df2012-10-11 13:32:13 +11001103struct raid10_plug_cb {
1104 struct blk_plug_cb cb;
1105 struct bio_list pending;
1106 int pending_cnt;
1107};
1108
1109static void raid10_unplug(struct blk_plug_cb *cb, bool from_schedule)
1110{
1111 struct raid10_plug_cb *plug = container_of(cb, struct raid10_plug_cb,
1112 cb);
1113 struct mddev *mddev = plug->cb.data;
1114 struct r10conf *conf = mddev->private;
1115 struct bio *bio;
1116
NeilBrown874807a2012-11-27 12:14:40 +11001117 if (from_schedule || current->bio_list) {
NeilBrown57c67df2012-10-11 13:32:13 +11001118 spin_lock_irq(&conf->device_lock);
1119 bio_list_merge(&conf->pending_bio_list, &plug->pending);
1120 conf->pending_count += plug->pending_cnt;
1121 spin_unlock_irq(&conf->device_lock);
NeilBrownee0b0242013-02-25 12:38:29 +11001122 wake_up(&conf->wait_barrier);
NeilBrown57c67df2012-10-11 13:32:13 +11001123 md_wakeup_thread(mddev->thread);
1124 kfree(plug);
1125 return;
1126 }
1127
1128 /* we aren't scheduling, so we can do the write-out directly. */
1129 bio = bio_list_get(&plug->pending);
1130 bitmap_unplug(mddev->bitmap);
1131 wake_up(&conf->wait_barrier);
1132
1133 while (bio) { /* submit pending writes */
1134 struct bio *next = bio->bi_next;
1135 bio->bi_next = NULL;
1136 generic_make_request(bio);
1137 bio = next;
1138 }
1139 kfree(plug);
1140}
1141
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -07001142static void make_request(struct mddev *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
NeilBrowne879a872011-10-11 16:49:02 +11001144 struct r10conf *conf = mddev->private;
NeilBrown9f2c9d12011-10-11 16:48:43 +11001145 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 struct bio *read_bio;
1147 int i;
NeilBrownf8c9e742012-05-21 09:28:33 +10001148 sector_t chunk_mask = (conf->geo.chunk_mask & conf->prev.chunk_mask);
NeilBrown5cf00fc2012-05-21 09:28:20 +10001149 int chunk_sects = chunk_mask + 1;
Jens Axboea3623572005-11-01 09:26:16 +01001150 const int rw = bio_data_dir(bio);
NeilBrown2c7d46e2010-08-18 16:16:05 +10001151 const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
Tejun Heoe9c74692010-09-03 11:56:18 +02001152 const unsigned long do_fua = (bio->bi_rw & REQ_FUA);
Shaohua Li532a2a32012-10-11 13:30:52 +11001153 const unsigned long do_discard = (bio->bi_rw
1154 & (REQ_DISCARD | REQ_SECURE));
Joe Lawrencec8dc9c62013-02-21 13:28:09 +11001155 const unsigned long do_same = (bio->bi_rw & REQ_WRITE_SAME);
NeilBrown6cce3b22006-01-06 00:20:16 -08001156 unsigned long flags;
NeilBrown3cb03002011-10-11 16:45:26 +11001157 struct md_rdev *blocked_rdev;
NeilBrown57c67df2012-10-11 13:32:13 +11001158 struct blk_plug_cb *cb;
1159 struct raid10_plug_cb *plug = NULL;
NeilBrownd4432c22011-07-28 11:39:24 +10001160 int sectors_handled;
1161 int max_sectors;
NeilBrown3ea7daa2012-05-22 13:53:47 +10001162 int sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Tejun Heoe9c74692010-09-03 11:56:18 +02001164 if (unlikely(bio->bi_rw & REQ_FLUSH)) {
1165 md_flush_request(mddev, bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001166 return;
NeilBrowne5dcdd82005-09-09 16:23:41 -07001167 }
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 /* If this request crosses a chunk boundary, we need to
1170 * split it. This will only happen for 1 PAGE (or less) requests.
1171 */
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08001172 if (unlikely((bio->bi_sector & chunk_mask) + bio_sectors(bio)
NeilBrown5cf00fc2012-05-21 09:28:20 +10001173 > chunk_sects
NeilBrownf8c9e742012-05-21 09:28:33 +10001174 && (conf->geo.near_copies < conf->geo.raid_disks
1175 || conf->prev.near_copies < conf->prev.raid_disks))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 struct bio_pair *bp;
1177 /* Sanity check -- queue functions should prevent this happening */
Kent Overstreet5b836362012-09-04 15:20:38 -07001178 if (bio_segments(bio) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 goto bad_map;
1180 /* This is a one page bio that upper layers
1181 * refuse to split for us, so we need to split it.
1182 */
Denis ChengRq6feef532008-10-09 08:57:05 +02001183 bp = bio_split(bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 chunk_sects - (bio->bi_sector & (chunk_sects - 1)) );
NeilBrown51e9ac72010-08-07 21:17:00 +10001185
1186 /* Each of these 'make_request' calls will call 'wait_barrier'.
1187 * If the first succeeds but the second blocks due to the resync
1188 * thread raising the barrier, we will deadlock because the
1189 * IO to the underlying device will be queued in generic_make_request
1190 * and will never complete, so will never reduce nr_pending.
1191 * So increment nr_waiting here so no new raise_barriers will
1192 * succeed, and so the second wait_barrier cannot block.
1193 */
1194 spin_lock_irq(&conf->resync_lock);
1195 conf->nr_waiting++;
1196 spin_unlock_irq(&conf->resync_lock);
1197
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001198 make_request(mddev, &bp->bio1);
1199 make_request(mddev, &bp->bio2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
NeilBrown51e9ac72010-08-07 21:17:00 +10001201 spin_lock_irq(&conf->resync_lock);
1202 conf->nr_waiting--;
1203 wake_up(&conf->wait_barrier);
1204 spin_unlock_irq(&conf->resync_lock);
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 bio_pair_release(bp);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001207 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 bad_map:
NeilBrown128595e2010-05-03 14:47:14 +10001209 printk("md/raid10:%s: make_request bug: can't convert block across chunks"
1210 " or bigger than %dk %llu %d\n", mdname(mddev), chunk_sects/2,
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08001211 (unsigned long long)bio->bi_sector, bio_sectors(bio) / 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
NeilBrown6712ecf2007-09-27 12:47:43 +02001213 bio_io_error(bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001214 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216
NeilBrown3d310eb2005-06-21 17:17:26 -07001217 md_write_start(mddev, bio);
NeilBrown06d91a52005-06-21 17:17:12 -07001218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 /*
1220 * Register the new request and wait if the reconstruction
1221 * thread has put up a bar for new requests.
1222 * Continue immediately if no resync is active currently.
1223 */
NeilBrown0a27ec92006-01-06 00:20:13 -08001224 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08001226 sectors = bio_sectors(bio);
NeilBrown3ea7daa2012-05-22 13:53:47 +10001227 while (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery) &&
1228 bio->bi_sector < conf->reshape_progress &&
1229 bio->bi_sector + sectors > conf->reshape_progress) {
1230 /* IO spans the reshape position. Need to wait for
1231 * reshape to pass
1232 */
1233 allow_barrier(conf);
1234 wait_event(conf->wait_barrier,
1235 conf->reshape_progress <= bio->bi_sector ||
1236 conf->reshape_progress >= bio->bi_sector + sectors);
1237 wait_barrier(conf);
1238 }
1239 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery) &&
1240 bio_data_dir(bio) == WRITE &&
1241 (mddev->reshape_backwards
1242 ? (bio->bi_sector < conf->reshape_safe &&
1243 bio->bi_sector + sectors > conf->reshape_progress)
1244 : (bio->bi_sector + sectors > conf->reshape_safe &&
1245 bio->bi_sector < conf->reshape_progress))) {
1246 /* Need to update reshape_position in metadata */
1247 mddev->reshape_position = conf->reshape_progress;
1248 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1249 set_bit(MD_CHANGE_PENDING, &mddev->flags);
1250 md_wakeup_thread(mddev->thread);
1251 wait_event(mddev->sb_wait,
1252 !test_bit(MD_CHANGE_PENDING, &mddev->flags));
1253
1254 conf->reshape_safe = mddev->reshape_position;
1255 }
1256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1258
1259 r10_bio->master_bio = bio;
NeilBrown3ea7daa2012-05-22 13:53:47 +10001260 r10_bio->sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 r10_bio->mddev = mddev;
1263 r10_bio->sector = bio->bi_sector;
NeilBrown6cce3b22006-01-06 00:20:16 -08001264 r10_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
NeilBrown856e08e2011-07-28 11:39:23 +10001266 /* We might need to issue multiple reads to different
1267 * devices if there are bad blocks around, so we keep
1268 * track of the number of reads in bio->bi_phys_segments.
1269 * If this is 0, there is only one r10_bio and no locking
1270 * will be needed when the request completes. If it is
1271 * non-zero, then it is the number of not-completed requests.
1272 */
1273 bio->bi_phys_segments = 0;
1274 clear_bit(BIO_SEG_VALID, &bio->bi_flags);
1275
Jens Axboea3623572005-11-01 09:26:16 +01001276 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 /*
1278 * read balancing logic:
1279 */
NeilBrown96c3fd12011-12-23 10:17:54 +11001280 struct md_rdev *rdev;
NeilBrown856e08e2011-07-28 11:39:23 +10001281 int slot;
1282
1283read_again:
NeilBrown96c3fd12011-12-23 10:17:54 +11001284 rdev = read_balance(conf, r10_bio, &max_sectors);
1285 if (!rdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 raid_end_bio_io(r10_bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001287 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 }
NeilBrown96c3fd12011-12-23 10:17:54 +11001289 slot = r10_bio->read_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
NeilBrowna167f662010-10-26 18:31:13 +11001291 read_bio = bio_clone_mddev(bio, GFP_NOIO, mddev);
NeilBrown856e08e2011-07-28 11:39:23 +10001292 md_trim_bio(read_bio, r10_bio->sector - bio->bi_sector,
1293 max_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 r10_bio->devs[slot].bio = read_bio;
NeilBrownabbf0982011-12-23 10:17:54 +11001296 r10_bio->devs[slot].rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298 read_bio->bi_sector = r10_bio->devs[slot].addr +
NeilBrownf8c9e742012-05-21 09:28:33 +10001299 choose_data_offset(r10_bio, rdev);
NeilBrown96c3fd12011-12-23 10:17:54 +11001300 read_bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 read_bio->bi_end_io = raid10_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001302 read_bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 read_bio->bi_private = r10_bio;
1304
NeilBrown856e08e2011-07-28 11:39:23 +10001305 if (max_sectors < r10_bio->sectors) {
1306 /* Could not read all from this device, so we will
1307 * need another r10_bio.
1308 */
NeilBrown856e08e2011-07-28 11:39:23 +10001309 sectors_handled = (r10_bio->sectors + max_sectors
1310 - bio->bi_sector);
1311 r10_bio->sectors = max_sectors;
1312 spin_lock_irq(&conf->device_lock);
1313 if (bio->bi_phys_segments == 0)
1314 bio->bi_phys_segments = 2;
1315 else
1316 bio->bi_phys_segments++;
1317 spin_unlock(&conf->device_lock);
1318 /* Cannot call generic_make_request directly
1319 * as that will be queued in __generic_make_request
1320 * and subsequent mempool_alloc might block
1321 * waiting for it. so hand bio over to raid10d.
1322 */
1323 reschedule_retry(r10_bio);
1324
1325 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1326
1327 r10_bio->master_bio = bio;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08001328 r10_bio->sectors = bio_sectors(bio) - sectors_handled;
NeilBrown856e08e2011-07-28 11:39:23 +10001329 r10_bio->state = 0;
1330 r10_bio->mddev = mddev;
1331 r10_bio->sector = bio->bi_sector + sectors_handled;
1332 goto read_again;
1333 } else
1334 generic_make_request(read_bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001335 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 }
1337
1338 /*
1339 * WRITE:
1340 */
NeilBrown34db0cd2011-10-11 16:50:01 +11001341 if (conf->pending_count >= max_queued_requests) {
1342 md_wakeup_thread(mddev->thread);
1343 wait_event(conf->wait_barrier,
1344 conf->pending_count < max_queued_requests);
1345 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07001346 /* first select target devices under rcu_lock and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 * inc refcount on their rdev. Record them by setting
1348 * bios[x] to bio
NeilBrownd4432c22011-07-28 11:39:24 +10001349 * If there are known/acknowledged bad blocks on any device
1350 * on which we have seen a write error, we want to avoid
1351 * writing to those blocks. This potentially requires several
1352 * writes to write around the bad blocks. Each set of writes
1353 * gets its own r10_bio with a set of bios attached. The number
1354 * of r10_bios is recored in bio->bi_phys_segments just as with
1355 * the read case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 */
NeilBrownc3b328a2011-04-18 18:25:43 +10001357
NeilBrown69335ef2011-12-23 10:17:54 +11001358 r10_bio->read_slot = -1; /* make sure repl_bio gets freed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 raid10_find_phys(conf, r10_bio);
NeilBrownd4432c22011-07-28 11:39:24 +10001360retry_write:
Harvey Harrisoncb6969e2008-05-06 20:42:32 -07001361 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 rcu_read_lock();
NeilBrownd4432c22011-07-28 11:39:24 +10001363 max_sectors = r10_bio->sectors;
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 for (i = 0; i < conf->copies; i++) {
1366 int d = r10_bio->devs[i].devnum;
NeilBrown3cb03002011-10-11 16:45:26 +11001367 struct md_rdev *rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown475b0322011-12-23 10:17:55 +11001368 struct md_rdev *rrdev = rcu_dereference(
1369 conf->mirrors[d].replacement);
NeilBrown4ca40c22011-12-23 10:17:55 +11001370 if (rdev == rrdev)
1371 rrdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07001372 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
1373 atomic_inc(&rdev->nr_pending);
1374 blocked_rdev = rdev;
1375 break;
1376 }
NeilBrown475b0322011-12-23 10:17:55 +11001377 if (rrdev && unlikely(test_bit(Blocked, &rrdev->flags))) {
1378 atomic_inc(&rrdev->nr_pending);
1379 blocked_rdev = rrdev;
1380 break;
1381 }
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001382 if (rdev && (test_bit(Faulty, &rdev->flags)
1383 || test_bit(Unmerged, &rdev->flags)))
1384 rdev = NULL;
NeilBrown050b6612012-03-19 12:46:39 +11001385 if (rrdev && (test_bit(Faulty, &rrdev->flags)
1386 || test_bit(Unmerged, &rrdev->flags)))
NeilBrown475b0322011-12-23 10:17:55 +11001387 rrdev = NULL;
1388
NeilBrownd4432c22011-07-28 11:39:24 +10001389 r10_bio->devs[i].bio = NULL;
NeilBrown475b0322011-12-23 10:17:55 +11001390 r10_bio->devs[i].repl_bio = NULL;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001391
1392 if (!rdev && !rrdev) {
NeilBrown6cce3b22006-01-06 00:20:16 -08001393 set_bit(R10BIO_Degraded, &r10_bio->state);
NeilBrownd4432c22011-07-28 11:39:24 +10001394 continue;
NeilBrown6cce3b22006-01-06 00:20:16 -08001395 }
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001396 if (rdev && test_bit(WriteErrorSeen, &rdev->flags)) {
NeilBrownd4432c22011-07-28 11:39:24 +10001397 sector_t first_bad;
1398 sector_t dev_sector = r10_bio->devs[i].addr;
1399 int bad_sectors;
1400 int is_bad;
1401
1402 is_bad = is_badblock(rdev, dev_sector,
1403 max_sectors,
1404 &first_bad, &bad_sectors);
1405 if (is_bad < 0) {
1406 /* Mustn't write here until the bad block
1407 * is acknowledged
1408 */
1409 atomic_inc(&rdev->nr_pending);
1410 set_bit(BlockedBadBlocks, &rdev->flags);
1411 blocked_rdev = rdev;
1412 break;
1413 }
1414 if (is_bad && first_bad <= dev_sector) {
1415 /* Cannot write here at all */
1416 bad_sectors -= (dev_sector - first_bad);
1417 if (bad_sectors < max_sectors)
1418 /* Mustn't write more than bad_sectors
1419 * to other devices yet
1420 */
1421 max_sectors = bad_sectors;
1422 /* We don't set R10BIO_Degraded as that
1423 * only applies if the disk is missing,
1424 * so it might be re-added, and we want to
1425 * know to recover this chunk.
1426 * In this case the device is here, and the
1427 * fact that this chunk is not in-sync is
1428 * recorded in the bad block log.
1429 */
1430 continue;
1431 }
1432 if (is_bad) {
1433 int good_sectors = first_bad - dev_sector;
1434 if (good_sectors < max_sectors)
1435 max_sectors = good_sectors;
1436 }
1437 }
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001438 if (rdev) {
1439 r10_bio->devs[i].bio = bio;
1440 atomic_inc(&rdev->nr_pending);
1441 }
NeilBrown475b0322011-12-23 10:17:55 +11001442 if (rrdev) {
1443 r10_bio->devs[i].repl_bio = bio;
1444 atomic_inc(&rrdev->nr_pending);
1445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
1447 rcu_read_unlock();
1448
Dan Williams6bfe0b42008-04-30 00:52:32 -07001449 if (unlikely(blocked_rdev)) {
1450 /* Have to wait for this device to get unblocked, then retry */
1451 int j;
1452 int d;
1453
NeilBrown475b0322011-12-23 10:17:55 +11001454 for (j = 0; j < i; j++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07001455 if (r10_bio->devs[j].bio) {
1456 d = r10_bio->devs[j].devnum;
1457 rdev_dec_pending(conf->mirrors[d].rdev, mddev);
1458 }
NeilBrown475b0322011-12-23 10:17:55 +11001459 if (r10_bio->devs[j].repl_bio) {
NeilBrown4ca40c22011-12-23 10:17:55 +11001460 struct md_rdev *rdev;
NeilBrown475b0322011-12-23 10:17:55 +11001461 d = r10_bio->devs[j].devnum;
NeilBrown4ca40c22011-12-23 10:17:55 +11001462 rdev = conf->mirrors[d].replacement;
1463 if (!rdev) {
1464 /* Race with remove_disk */
1465 smp_mb();
1466 rdev = conf->mirrors[d].rdev;
1467 }
1468 rdev_dec_pending(rdev, mddev);
NeilBrown475b0322011-12-23 10:17:55 +11001469 }
1470 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07001471 allow_barrier(conf);
1472 md_wait_for_blocked_rdev(blocked_rdev, mddev);
1473 wait_barrier(conf);
1474 goto retry_write;
1475 }
1476
NeilBrownd4432c22011-07-28 11:39:24 +10001477 if (max_sectors < r10_bio->sectors) {
1478 /* We are splitting this into multiple parts, so
1479 * we need to prepare for allocating another r10_bio.
1480 */
1481 r10_bio->sectors = max_sectors;
1482 spin_lock_irq(&conf->device_lock);
1483 if (bio->bi_phys_segments == 0)
1484 bio->bi_phys_segments = 2;
1485 else
1486 bio->bi_phys_segments++;
1487 spin_unlock_irq(&conf->device_lock);
1488 }
1489 sectors_handled = r10_bio->sector + max_sectors - bio->bi_sector;
1490
NeilBrown4e780642010-10-19 12:54:01 +11001491 atomic_set(&r10_bio->remaining, 1);
NeilBrownd4432c22011-07-28 11:39:24 +10001492 bitmap_startwrite(mddev->bitmap, r10_bio->sector, r10_bio->sectors, 0);
NeilBrown06d91a52005-06-21 17:17:12 -07001493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 for (i = 0; i < conf->copies; i++) {
1495 struct bio *mbio;
1496 int d = r10_bio->devs[i].devnum;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001497 if (r10_bio->devs[i].bio) {
1498 struct md_rdev *rdev = conf->mirrors[d].rdev;
1499 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
1500 md_trim_bio(mbio, r10_bio->sector - bio->bi_sector,
1501 max_sectors);
1502 r10_bio->devs[i].bio = mbio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001504 mbio->bi_sector = (r10_bio->devs[i].addr+
1505 choose_data_offset(r10_bio,
1506 rdev));
1507 mbio->bi_bdev = rdev->bdev;
1508 mbio->bi_end_io = raid10_end_write_request;
Joe Lawrencec8dc9c62013-02-21 13:28:09 +11001509 mbio->bi_rw =
1510 WRITE | do_sync | do_fua | do_discard | do_same;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001511 mbio->bi_private = r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001513 atomic_inc(&r10_bio->remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001515 cb = blk_check_plugged(raid10_unplug, mddev,
1516 sizeof(*plug));
1517 if (cb)
1518 plug = container_of(cb, struct raid10_plug_cb,
1519 cb);
1520 else
1521 plug = NULL;
1522 spin_lock_irqsave(&conf->device_lock, flags);
1523 if (plug) {
1524 bio_list_add(&plug->pending, mbio);
1525 plug->pending_cnt++;
1526 } else {
1527 bio_list_add(&conf->pending_bio_list, mbio);
1528 conf->pending_count++;
1529 }
1530 spin_unlock_irqrestore(&conf->device_lock, flags);
1531 if (!plug)
1532 md_wakeup_thread(mddev->thread);
1533 }
NeilBrown57c67df2012-10-11 13:32:13 +11001534
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001535 if (r10_bio->devs[i].repl_bio) {
1536 struct md_rdev *rdev = conf->mirrors[d].replacement;
1537 if (rdev == NULL) {
1538 /* Replacement just got moved to main 'rdev' */
1539 smp_mb();
1540 rdev = conf->mirrors[d].rdev;
1541 }
1542 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
1543 md_trim_bio(mbio, r10_bio->sector - bio->bi_sector,
1544 max_sectors);
1545 r10_bio->devs[i].repl_bio = mbio;
1546
1547 mbio->bi_sector = (r10_bio->devs[i].addr +
1548 choose_data_offset(
1549 r10_bio, rdev));
1550 mbio->bi_bdev = rdev->bdev;
1551 mbio->bi_end_io = raid10_end_write_request;
Joe Lawrencec8dc9c62013-02-21 13:28:09 +11001552 mbio->bi_rw =
1553 WRITE | do_sync | do_fua | do_discard | do_same;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001554 mbio->bi_private = r10_bio;
1555
1556 atomic_inc(&r10_bio->remaining);
1557 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown57c67df2012-10-11 13:32:13 +11001558 bio_list_add(&conf->pending_bio_list, mbio);
1559 conf->pending_count++;
NeilBrowne7c0c3f2012-11-22 14:42:49 +11001560 spin_unlock_irqrestore(&conf->device_lock, flags);
1561 if (!mddev_check_plugged(mddev))
1562 md_wakeup_thread(mddev->thread);
NeilBrown57c67df2012-10-11 13:32:13 +11001563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
1565
NeilBrown079fa162011-09-10 17:21:23 +10001566 /* Don't remove the bias on 'remaining' (one_write_done) until
1567 * after checking if we need to go around again.
1568 */
NeilBrowna35e63e2008-03-04 14:29:29 -08001569
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08001570 if (sectors_handled < bio_sectors(bio)) {
NeilBrown079fa162011-09-10 17:21:23 +10001571 one_write_done(r10_bio);
NeilBrown5e570282011-07-28 11:39:25 +10001572 /* We need another r10_bio. It has already been counted
NeilBrownd4432c22011-07-28 11:39:24 +10001573 * in bio->bi_phys_segments.
1574 */
1575 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
1576
1577 r10_bio->master_bio = bio;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08001578 r10_bio->sectors = bio_sectors(bio) - sectors_handled;
NeilBrownd4432c22011-07-28 11:39:24 +10001579
1580 r10_bio->mddev = mddev;
1581 r10_bio->sector = bio->bi_sector + sectors_handled;
1582 r10_bio->state = 0;
1583 goto retry_write;
1584 }
NeilBrown079fa162011-09-10 17:21:23 +10001585 one_write_done(r10_bio);
1586
1587 /* In case raid10d snuck in to freeze_array */
1588 wake_up(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
1590
NeilBrownfd01b882011-10-11 16:47:53 +11001591static void status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
NeilBrowne879a872011-10-11 16:49:02 +11001593 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 int i;
1595
NeilBrown5cf00fc2012-05-21 09:28:20 +10001596 if (conf->geo.near_copies < conf->geo.raid_disks)
Andre Noll9d8f0362009-06-18 08:45:01 +10001597 seq_printf(seq, " %dK chunks", mddev->chunk_sectors / 2);
NeilBrown5cf00fc2012-05-21 09:28:20 +10001598 if (conf->geo.near_copies > 1)
1599 seq_printf(seq, " %d near-copies", conf->geo.near_copies);
1600 if (conf->geo.far_copies > 1) {
1601 if (conf->geo.far_offset)
1602 seq_printf(seq, " %d offset-copies", conf->geo.far_copies);
NeilBrownc93983b2006-06-26 00:27:41 -07001603 else
NeilBrown5cf00fc2012-05-21 09:28:20 +10001604 seq_printf(seq, " %d far-copies", conf->geo.far_copies);
NeilBrownc93983b2006-06-26 00:27:41 -07001605 }
NeilBrown5cf00fc2012-05-21 09:28:20 +10001606 seq_printf(seq, " [%d/%d] [", conf->geo.raid_disks,
1607 conf->geo.raid_disks - mddev->degraded);
1608 for (i = 0; i < conf->geo.raid_disks; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 seq_printf(seq, "%s",
1610 conf->mirrors[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08001611 test_bit(In_sync, &conf->mirrors[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 seq_printf(seq, "]");
1613}
1614
NeilBrown700c7212011-07-27 11:00:36 +10001615/* check if there are enough drives for
1616 * every block to appear on atleast one.
1617 * Don't consider the device numbered 'ignore'
1618 * as we might be about to remove it.
1619 */
NeilBrownf8c9e742012-05-21 09:28:33 +10001620static int _enough(struct r10conf *conf, struct geom *geo, int ignore)
NeilBrown700c7212011-07-27 11:00:36 +10001621{
1622 int first = 0;
1623
1624 do {
1625 int n = conf->copies;
1626 int cnt = 0;
NeilBrown80b48122012-09-27 12:35:21 +10001627 int this = first;
NeilBrown700c7212011-07-27 11:00:36 +10001628 while (n--) {
NeilBrown80b48122012-09-27 12:35:21 +10001629 if (conf->mirrors[this].rdev &&
1630 this != ignore)
NeilBrown700c7212011-07-27 11:00:36 +10001631 cnt++;
NeilBrown80b48122012-09-27 12:35:21 +10001632 this = (this+1) % geo->raid_disks;
NeilBrown700c7212011-07-27 11:00:36 +10001633 }
1634 if (cnt == 0)
1635 return 0;
NeilBrown80b48122012-09-27 12:35:21 +10001636 first = (first + geo->near_copies) % geo->raid_disks;
NeilBrown700c7212011-07-27 11:00:36 +10001637 } while (first != 0);
1638 return 1;
1639}
1640
NeilBrownf8c9e742012-05-21 09:28:33 +10001641static int enough(struct r10conf *conf, int ignore)
1642{
1643 return _enough(conf, &conf->geo, ignore) &&
1644 _enough(conf, &conf->prev, ignore);
1645}
1646
NeilBrownfd01b882011-10-11 16:47:53 +11001647static void error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648{
1649 char b[BDEVNAME_SIZE];
NeilBrowne879a872011-10-11 16:49:02 +11001650 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 /*
1653 * If it is not operational, then we have already marked it as dead
1654 * else if it is the last working disks, ignore the error, let the
1655 * next level up know.
1656 * else mark the drive as failed
1657 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001658 if (test_bit(In_sync, &rdev->flags)
NeilBrown700c7212011-07-27 11:00:36 +10001659 && !enough(conf, rdev->raid_disk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 /*
1661 * Don't fail the drive, just return an IO error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 */
1663 return;
NeilBrownc04be0a2006-10-03 01:15:53 -07001664 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1665 unsigned long flags;
1666 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001668 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 /*
1670 * if recovery is running, make sure it aborts.
1671 */
NeilBrowndfc70642008-05-23 13:04:39 -07001672 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 }
NeilBrownde393cd2011-07-28 11:31:48 +10001674 set_bit(Blocked, &rdev->flags);
NeilBrownb2d444d2005-11-08 21:39:31 -08001675 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -07001676 set_bit(MD_CHANGE_DEVS, &mddev->flags);
Joe Perches067032b2011-01-14 09:14:33 +11001677 printk(KERN_ALERT
1678 "md/raid10:%s: Disk failure on %s, disabling device.\n"
1679 "md/raid10:%s: Operation continuing on %d devices.\n",
NeilBrown128595e2010-05-03 14:47:14 +10001680 mdname(mddev), bdevname(rdev->bdev, b),
NeilBrown5cf00fc2012-05-21 09:28:20 +10001681 mdname(mddev), conf->geo.raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682}
1683
NeilBrowne879a872011-10-11 16:49:02 +11001684static void print_conf(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
1686 int i;
Jonathan Brassowdc280d92012-07-31 10:03:52 +10001687 struct raid10_info *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
NeilBrown128595e2010-05-03 14:47:14 +10001689 printk(KERN_DEBUG "RAID10 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 if (!conf) {
NeilBrown128595e2010-05-03 14:47:14 +10001691 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 return;
1693 }
NeilBrown5cf00fc2012-05-21 09:28:20 +10001694 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->geo.raid_disks - conf->mddev->degraded,
1695 conf->geo.raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
NeilBrown5cf00fc2012-05-21 09:28:20 +10001697 for (i = 0; i < conf->geo.raid_disks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 char b[BDEVNAME_SIZE];
1699 tmp = conf->mirrors + i;
1700 if (tmp->rdev)
NeilBrown128595e2010-05-03 14:47:14 +10001701 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownb2d444d2005-11-08 21:39:31 -08001702 i, !test_bit(In_sync, &tmp->rdev->flags),
1703 !test_bit(Faulty, &tmp->rdev->flags),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 bdevname(tmp->rdev->bdev,b));
1705 }
1706}
1707
NeilBrowne879a872011-10-11 16:49:02 +11001708static void close_sync(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
NeilBrown0a27ec92006-01-06 00:20:13 -08001710 wait_barrier(conf);
1711 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 mempool_destroy(conf->r10buf_pool);
1714 conf->r10buf_pool = NULL;
1715}
1716
NeilBrownfd01b882011-10-11 16:47:53 +11001717static int raid10_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
1719 int i;
NeilBrowne879a872011-10-11 16:49:02 +11001720 struct r10conf *conf = mddev->private;
Jonathan Brassowdc280d92012-07-31 10:03:52 +10001721 struct raid10_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10001722 int count = 0;
1723 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725 /*
1726 * Find all non-in_sync disks within the RAID10 configuration
1727 * and mark them in_sync
1728 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10001729 for (i = 0; i < conf->geo.raid_disks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 tmp = conf->mirrors + i;
NeilBrown4ca40c22011-12-23 10:17:55 +11001731 if (tmp->replacement
1732 && tmp->replacement->recovery_offset == MaxSector
1733 && !test_bit(Faulty, &tmp->replacement->flags)
1734 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
1735 /* Replacement has just become active */
1736 if (!tmp->rdev
1737 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
1738 count++;
1739 if (tmp->rdev) {
1740 /* Replaced device not technically faulty,
1741 * but we need to be sure it gets removed
1742 * and never re-added.
1743 */
1744 set_bit(Faulty, &tmp->rdev->flags);
1745 sysfs_notify_dirent_safe(
1746 tmp->rdev->sysfs_state);
1747 }
1748 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
1749 } else if (tmp->rdev
1750 && !test_bit(Faulty, &tmp->rdev->flags)
1751 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10001752 count++;
Jonathan Brassow2863b9e2012-10-11 13:38:58 +11001753 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
1755 }
NeilBrown6b965622010-08-18 11:56:59 +10001756 spin_lock_irqsave(&conf->device_lock, flags);
1757 mddev->degraded -= count;
1758 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 print_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10001761 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
1763
1764
NeilBrownfd01b882011-10-11 16:47:53 +11001765static int raid10_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
NeilBrowne879a872011-10-11 16:49:02 +11001767 struct r10conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001768 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 int mirror;
Neil Brown6c2fce22008-06-28 08:31:31 +10001770 int first = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +10001771 int last = conf->geo.raid_disks - 1;
NeilBrown050b6612012-03-19 12:46:39 +11001772 struct request_queue *q = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 if (mddev->recovery_cp < MaxSector)
1775 /* only hot-add to in-sync arrays, as recovery is
1776 * very different from resync
1777 */
Neil Brown199050e2008-06-28 08:31:33 +10001778 return -EBUSY;
NeilBrownf8c9e742012-05-21 09:28:33 +10001779 if (rdev->saved_raid_disk < 0 && !_enough(conf, &conf->prev, -1))
Neil Brown199050e2008-06-28 08:31:33 +10001780 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
NeilBrowna53a6c82008-11-06 17:28:20 +11001782 if (rdev->raid_disk >= 0)
Neil Brown6c2fce22008-06-28 08:31:31 +10001783 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
NeilBrown050b6612012-03-19 12:46:39 +11001785 if (q->merge_bvec_fn) {
1786 set_bit(Unmerged, &rdev->flags);
1787 mddev->merge_check_needed = 1;
1788 }
1789
Namhyung Kim2c4193d2011-07-18 17:38:43 +10001790 if (rdev->saved_raid_disk >= first &&
NeilBrown6cce3b22006-01-06 00:20:16 -08001791 conf->mirrors[rdev->saved_raid_disk].rdev == NULL)
1792 mirror = rdev->saved_raid_disk;
1793 else
Neil Brown6c2fce22008-06-28 08:31:31 +10001794 mirror = first;
NeilBrown2bb77732011-07-27 11:00:36 +10001795 for ( ; mirror <= last ; mirror++) {
Jonathan Brassowdc280d92012-07-31 10:03:52 +10001796 struct raid10_info *p = &conf->mirrors[mirror];
NeilBrown2bb77732011-07-27 11:00:36 +10001797 if (p->recovery_disabled == mddev->recovery_disabled)
1798 continue;
NeilBrownb7044d42011-12-23 10:17:56 +11001799 if (p->rdev) {
1800 if (!test_bit(WantReplacement, &p->rdev->flags) ||
1801 p->replacement != NULL)
1802 continue;
1803 clear_bit(In_sync, &rdev->flags);
1804 set_bit(Replacement, &rdev->flags);
1805 rdev->raid_disk = mirror;
1806 err = 0;
1807 disk_stack_limits(mddev->gendisk, rdev->bdev,
1808 rdev->data_offset << 9);
NeilBrownb7044d42011-12-23 10:17:56 +11001809 conf->fullsync = 1;
1810 rcu_assign_pointer(p->replacement, rdev);
1811 break;
1812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
NeilBrown2bb77732011-07-27 11:00:36 +10001814 disk_stack_limits(mddev->gendisk, rdev->bdev,
1815 rdev->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
NeilBrown2bb77732011-07-27 11:00:36 +10001817 p->head_position = 0;
NeilBrownd890fa22011-10-26 11:54:39 +11001818 p->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown2bb77732011-07-27 11:00:36 +10001819 rdev->raid_disk = mirror;
1820 err = 0;
1821 if (rdev->saved_raid_disk != mirror)
1822 conf->fullsync = 1;
1823 rcu_assign_pointer(p->rdev, rdev);
1824 break;
1825 }
NeilBrown050b6612012-03-19 12:46:39 +11001826 if (err == 0 && test_bit(Unmerged, &rdev->flags)) {
1827 /* Some requests might not have seen this new
1828 * merge_bvec_fn. We must wait for them to complete
1829 * before merging the device fully.
1830 * First we make sure any code which has tested
1831 * our function has submitted the request, then
1832 * we wait for all outstanding requests to complete.
1833 */
1834 synchronize_sched();
1835 raise_barrier(conf, 0);
1836 lower_barrier(conf);
1837 clear_bit(Unmerged, &rdev->flags);
1838 }
Andre Nollac5e7112009-08-03 10:59:47 +10001839 md_integrity_add_rdev(rdev, mddev);
Jonathan Brassowed30be02012-10-31 11:42:30 +11001840 if (mddev->queue && blk_queue_discard(bdev_get_queue(rdev->bdev)))
Shaohua Li532a2a32012-10-11 13:30:52 +11001841 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, mddev->queue);
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001844 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845}
1846
NeilBrownb8321b62011-12-23 10:17:51 +11001847static int raid10_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
NeilBrowne879a872011-10-11 16:49:02 +11001849 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11001851 int number = rdev->raid_disk;
NeilBrownc8ab9032011-12-23 10:17:54 +11001852 struct md_rdev **rdevp;
Jonathan Brassowdc280d92012-07-31 10:03:52 +10001853 struct raid10_info *p = conf->mirrors + number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855 print_conf(conf);
NeilBrownc8ab9032011-12-23 10:17:54 +11001856 if (rdev == p->rdev)
1857 rdevp = &p->rdev;
1858 else if (rdev == p->replacement)
1859 rdevp = &p->replacement;
1860 else
1861 return 0;
1862
1863 if (test_bit(In_sync, &rdev->flags) ||
1864 atomic_read(&rdev->nr_pending)) {
1865 err = -EBUSY;
1866 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
NeilBrownc8ab9032011-12-23 10:17:54 +11001868 /* Only remove faulty devices if recovery
1869 * is not possible.
1870 */
1871 if (!test_bit(Faulty, &rdev->flags) &&
1872 mddev->recovery_disabled != p->recovery_disabled &&
NeilBrown4ca40c22011-12-23 10:17:55 +11001873 (!p->replacement || p->replacement == rdev) &&
NeilBrown63aced62012-05-22 13:55:33 +10001874 number < conf->geo.raid_disks &&
NeilBrownc8ab9032011-12-23 10:17:54 +11001875 enough(conf, -1)) {
1876 err = -EBUSY;
1877 goto abort;
1878 }
1879 *rdevp = NULL;
1880 synchronize_rcu();
1881 if (atomic_read(&rdev->nr_pending)) {
1882 /* lost the race, try later */
1883 err = -EBUSY;
1884 *rdevp = rdev;
1885 goto abort;
NeilBrown4ca40c22011-12-23 10:17:55 +11001886 } else if (p->replacement) {
1887 /* We must have just cleared 'rdev' */
1888 p->rdev = p->replacement;
1889 clear_bit(Replacement, &p->replacement->flags);
1890 smp_mb(); /* Make sure other CPUs may see both as identical
1891 * but will never see neither -- if they are careful.
1892 */
1893 p->replacement = NULL;
1894 clear_bit(WantReplacement, &rdev->flags);
1895 } else
1896 /* We might have just remove the Replacement as faulty
1897 * Clear the flag just in case
1898 */
1899 clear_bit(WantReplacement, &rdev->flags);
1900
NeilBrownc8ab9032011-12-23 10:17:54 +11001901 err = md_integrity_register(mddev);
1902
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903abort:
1904
1905 print_conf(conf);
1906 return err;
1907}
1908
1909
NeilBrown6712ecf2007-09-27 12:47:43 +02001910static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
NeilBrown9f2c9d12011-10-11 16:48:43 +11001912 struct r10bio *r10_bio = bio->bi_private;
NeilBrowne879a872011-10-11 16:49:02 +11001913 struct r10conf *conf = r10_bio->mddev->private;
Namhyung Kim778ca012011-07-18 17:38:47 +10001914 int d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
NeilBrown3ea7daa2012-05-22 13:53:47 +10001916 if (bio == r10_bio->master_bio) {
1917 /* this is a reshape read */
1918 d = r10_bio->read_slot; /* really the read dev */
1919 } else
1920 d = find_bio_disk(conf, r10_bio, bio, NULL, NULL);
NeilBrown0eb3ff12006-01-06 00:20:29 -08001921
1922 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
1923 set_bit(R10BIO_Uptodate, &r10_bio->state);
NeilBrowne684e412011-07-28 11:39:25 +10001924 else
1925 /* The write handler will notice the lack of
1926 * R10BIO_Uptodate and record any errors etc
1927 */
NeilBrown4dbcdc72006-01-06 00:20:52 -08001928 atomic_add(r10_bio->sectors,
1929 &conf->mirrors[d].rdev->corrected_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931 /* for reconstruct, we always reschedule after a read.
1932 * for resync, only after all reads
1933 */
NeilBrown73d5c382009-02-25 13:18:47 +11001934 rdev_dec_pending(conf->mirrors[d].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 if (test_bit(R10BIO_IsRecover, &r10_bio->state) ||
1936 atomic_dec_and_test(&r10_bio->remaining)) {
1937 /* we have read all the blocks,
1938 * do the comparison in process context in raid10d
1939 */
1940 reschedule_retry(r10_bio);
1941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942}
1943
NeilBrown9f2c9d12011-10-11 16:48:43 +11001944static void end_sync_request(struct r10bio *r10_bio)
NeilBrown5e570282011-07-28 11:39:25 +10001945{
NeilBrownfd01b882011-10-11 16:47:53 +11001946 struct mddev *mddev = r10_bio->mddev;
NeilBrown5e570282011-07-28 11:39:25 +10001947
1948 while (atomic_dec_and_test(&r10_bio->remaining)) {
1949 if (r10_bio->master_bio == NULL) {
1950 /* the primary of several recovery bios */
1951 sector_t s = r10_bio->sectors;
1952 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
1953 test_bit(R10BIO_WriteError, &r10_bio->state))
1954 reschedule_retry(r10_bio);
1955 else
1956 put_buf(r10_bio);
1957 md_done_sync(mddev, s, 1);
1958 break;
1959 } else {
NeilBrown9f2c9d12011-10-11 16:48:43 +11001960 struct r10bio *r10_bio2 = (struct r10bio *)r10_bio->master_bio;
NeilBrown5e570282011-07-28 11:39:25 +10001961 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
1962 test_bit(R10BIO_WriteError, &r10_bio->state))
1963 reschedule_retry(r10_bio);
1964 else
1965 put_buf(r10_bio);
1966 r10_bio = r10_bio2;
1967 }
1968 }
1969}
1970
NeilBrown6712ecf2007-09-27 12:47:43 +02001971static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972{
1973 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9f2c9d12011-10-11 16:48:43 +11001974 struct r10bio *r10_bio = bio->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11001975 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11001976 struct r10conf *conf = mddev->private;
Namhyung Kim778ca012011-07-18 17:38:47 +10001977 int d;
NeilBrown749c55e2011-07-28 11:39:24 +10001978 sector_t first_bad;
1979 int bad_sectors;
1980 int slot;
NeilBrown9ad1aef2011-12-23 10:17:55 +11001981 int repl;
NeilBrown4ca40c22011-12-23 10:17:55 +11001982 struct md_rdev *rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
NeilBrown9ad1aef2011-12-23 10:17:55 +11001984 d = find_bio_disk(conf, r10_bio, bio, &slot, &repl);
1985 if (repl)
1986 rdev = conf->mirrors[d].replacement;
NeilBrown547414d2012-03-13 11:21:20 +11001987 else
NeilBrown9ad1aef2011-12-23 10:17:55 +11001988 rdev = conf->mirrors[d].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
NeilBrown1a0b7cd2011-07-28 11:39:25 +10001990 if (!uptodate) {
NeilBrown9ad1aef2011-12-23 10:17:55 +11001991 if (repl)
1992 md_error(mddev, rdev);
1993 else {
1994 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11001995 if (!test_and_set_bit(WantReplacement, &rdev->flags))
1996 set_bit(MD_RECOVERY_NEEDED,
1997 &rdev->mddev->recovery);
NeilBrown9ad1aef2011-12-23 10:17:55 +11001998 set_bit(R10BIO_WriteError, &r10_bio->state);
1999 }
2000 } else if (is_badblock(rdev,
NeilBrown749c55e2011-07-28 11:39:24 +10002001 r10_bio->devs[slot].addr,
2002 r10_bio->sectors,
2003 &first_bad, &bad_sectors))
2004 set_bit(R10BIO_MadeGood, &r10_bio->state);
NeilBrowndfc70642008-05-23 13:04:39 -07002005
NeilBrown9ad1aef2011-12-23 10:17:55 +11002006 rdev_dec_pending(rdev, mddev);
NeilBrown5e570282011-07-28 11:39:25 +10002007
2008 end_sync_request(r10_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009}
2010
2011/*
2012 * Note: sync and recover and handled very differently for raid10
2013 * This code is for resync.
2014 * For resync, we read through virtual addresses and read all blocks.
2015 * If there is any error, we schedule a write. The lowest numbered
2016 * drive is authoritative.
2017 * However requests come for physical address, so we need to map.
2018 * For every physical address there are raid_disks/copies virtual addresses,
2019 * which is always are least one, but is not necessarly an integer.
2020 * This means that a physical address can span multiple chunks, so we may
2021 * have to submit multiple io requests for a single sync request.
2022 */
2023/*
2024 * We check if all blocks are in-sync and only write to blocks that
2025 * aren't in sync
2026 */
NeilBrown9f2c9d12011-10-11 16:48:43 +11002027static void sync_request_write(struct mddev *mddev, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
NeilBrowne879a872011-10-11 16:49:02 +11002029 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 int i, first;
2031 struct bio *tbio, *fbio;
majianpengf4380a92012-04-12 16:04:47 +10002032 int vcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 atomic_set(&r10_bio->remaining, 1);
2035
2036 /* find the first device with a block */
2037 for (i=0; i<conf->copies; i++)
2038 if (test_bit(BIO_UPTODATE, &r10_bio->devs[i].bio->bi_flags))
2039 break;
2040
2041 if (i == conf->copies)
2042 goto done;
2043
2044 first = i;
2045 fbio = r10_bio->devs[i].bio;
2046
majianpengf4380a92012-04-12 16:04:47 +10002047 vcnt = (r10_bio->sectors + (PAGE_SIZE >> 9) - 1) >> (PAGE_SHIFT - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 /* now find blocks with errors */
NeilBrown0eb3ff12006-01-06 00:20:29 -08002049 for (i=0 ; i < conf->copies ; i++) {
2050 int j, d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 tbio = r10_bio->devs[i].bio;
NeilBrown0eb3ff12006-01-06 00:20:29 -08002053
2054 if (tbio->bi_end_io != end_sync_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 continue;
NeilBrown0eb3ff12006-01-06 00:20:29 -08002056 if (i == first)
2057 continue;
2058 if (test_bit(BIO_UPTODATE, &r10_bio->devs[i].bio->bi_flags)) {
2059 /* We know that the bi_io_vec layout is the same for
2060 * both 'first' and 'i', so we just compare them.
2061 * All vec entries are PAGE_SIZE;
2062 */
2063 for (j = 0; j < vcnt; j++)
2064 if (memcmp(page_address(fbio->bi_io_vec[j].bv_page),
2065 page_address(tbio->bi_io_vec[j].bv_page),
NeilBrown5020ad72012-04-02 01:39:05 +10002066 fbio->bi_io_vec[j].bv_len))
NeilBrown0eb3ff12006-01-06 00:20:29 -08002067 break;
2068 if (j == vcnt)
2069 continue;
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11002070 atomic64_add(r10_bio->sectors, &mddev->resync_mismatches);
NeilBrownf84ee362011-07-28 11:39:25 +10002071 if (test_bit(MD_RECOVERY_CHECK, &mddev->recovery))
2072 /* Don't fix anything. */
2073 continue;
NeilBrown0eb3ff12006-01-06 00:20:29 -08002074 }
NeilBrownf84ee362011-07-28 11:39:25 +10002075 /* Ok, we need to write this bio, either to correct an
2076 * inconsistency or to correct an unreadable block.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 * First we need to fixup bv_offset, bv_len and
2078 * bi_vecs, as the read request might have corrupted these
2079 */
2080 tbio->bi_vcnt = vcnt;
2081 tbio->bi_size = r10_bio->sectors << 9;
2082 tbio->bi_idx = 0;
2083 tbio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 tbio->bi_flags &= ~(BIO_POOL_MASK - 1);
2085 tbio->bi_flags |= 1 << BIO_UPTODATE;
2086 tbio->bi_next = NULL;
2087 tbio->bi_rw = WRITE;
2088 tbio->bi_private = r10_bio;
2089 tbio->bi_sector = r10_bio->devs[i].addr;
2090
2091 for (j=0; j < vcnt ; j++) {
2092 tbio->bi_io_vec[j].bv_offset = 0;
2093 tbio->bi_io_vec[j].bv_len = PAGE_SIZE;
2094
2095 memcpy(page_address(tbio->bi_io_vec[j].bv_page),
2096 page_address(fbio->bi_io_vec[j].bv_page),
2097 PAGE_SIZE);
2098 }
2099 tbio->bi_end_io = end_sync_write;
2100
2101 d = r10_bio->devs[i].devnum;
2102 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
2103 atomic_inc(&r10_bio->remaining);
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08002104 md_sync_acct(conf->mirrors[d].rdev->bdev, bio_sectors(tbio));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106 tbio->bi_sector += conf->mirrors[d].rdev->data_offset;
2107 tbio->bi_bdev = conf->mirrors[d].rdev->bdev;
2108 generic_make_request(tbio);
2109 }
2110
NeilBrown9ad1aef2011-12-23 10:17:55 +11002111 /* Now write out to any replacement devices
2112 * that are active
2113 */
2114 for (i = 0; i < conf->copies; i++) {
2115 int j, d;
NeilBrown9ad1aef2011-12-23 10:17:55 +11002116
2117 tbio = r10_bio->devs[i].repl_bio;
2118 if (!tbio || !tbio->bi_end_io)
2119 continue;
2120 if (r10_bio->devs[i].bio->bi_end_io != end_sync_write
2121 && r10_bio->devs[i].bio != fbio)
2122 for (j = 0; j < vcnt; j++)
2123 memcpy(page_address(tbio->bi_io_vec[j].bv_page),
2124 page_address(fbio->bi_io_vec[j].bv_page),
2125 PAGE_SIZE);
2126 d = r10_bio->devs[i].devnum;
2127 atomic_inc(&r10_bio->remaining);
2128 md_sync_acct(conf->mirrors[d].replacement->bdev,
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08002129 bio_sectors(tbio));
NeilBrown9ad1aef2011-12-23 10:17:55 +11002130 generic_make_request(tbio);
2131 }
2132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133done:
2134 if (atomic_dec_and_test(&r10_bio->remaining)) {
2135 md_done_sync(mddev, r10_bio->sectors, 1);
2136 put_buf(r10_bio);
2137 }
2138}
2139
2140/*
2141 * Now for the recovery code.
2142 * Recovery happens across physical sectors.
2143 * We recover all non-is_sync drives by finding the virtual address of
2144 * each, and then choose a working drive that also has that virt address.
2145 * There is a separate r10_bio for each non-in_sync drive.
2146 * Only the first two slots are in use. The first for reading,
2147 * The second for writing.
2148 *
2149 */
NeilBrown9f2c9d12011-10-11 16:48:43 +11002150static void fix_recovery_read_error(struct r10bio *r10_bio)
NeilBrown5e570282011-07-28 11:39:25 +10002151{
2152 /* We got a read error during recovery.
2153 * We repeat the read in smaller page-sized sections.
2154 * If a read succeeds, write it to the new device or record
2155 * a bad block if we cannot.
2156 * If a read fails, record a bad block on both old and
2157 * new devices.
2158 */
NeilBrownfd01b882011-10-11 16:47:53 +11002159 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11002160 struct r10conf *conf = mddev->private;
NeilBrown5e570282011-07-28 11:39:25 +10002161 struct bio *bio = r10_bio->devs[0].bio;
2162 sector_t sect = 0;
2163 int sectors = r10_bio->sectors;
2164 int idx = 0;
2165 int dr = r10_bio->devs[0].devnum;
2166 int dw = r10_bio->devs[1].devnum;
2167
2168 while (sectors) {
2169 int s = sectors;
NeilBrown3cb03002011-10-11 16:45:26 +11002170 struct md_rdev *rdev;
NeilBrown5e570282011-07-28 11:39:25 +10002171 sector_t addr;
2172 int ok;
2173
2174 if (s > (PAGE_SIZE>>9))
2175 s = PAGE_SIZE >> 9;
2176
2177 rdev = conf->mirrors[dr].rdev;
2178 addr = r10_bio->devs[0].addr + sect,
2179 ok = sync_page_io(rdev,
2180 addr,
2181 s << 9,
2182 bio->bi_io_vec[idx].bv_page,
2183 READ, false);
2184 if (ok) {
2185 rdev = conf->mirrors[dw].rdev;
2186 addr = r10_bio->devs[1].addr + sect;
2187 ok = sync_page_io(rdev,
2188 addr,
2189 s << 9,
2190 bio->bi_io_vec[idx].bv_page,
2191 WRITE, false);
NeilBrownb7044d42011-12-23 10:17:56 +11002192 if (!ok) {
NeilBrown5e570282011-07-28 11:39:25 +10002193 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11002194 if (!test_and_set_bit(WantReplacement,
2195 &rdev->flags))
2196 set_bit(MD_RECOVERY_NEEDED,
2197 &rdev->mddev->recovery);
2198 }
NeilBrown5e570282011-07-28 11:39:25 +10002199 }
2200 if (!ok) {
2201 /* We don't worry if we cannot set a bad block -
2202 * it really is bad so there is no loss in not
2203 * recording it yet
2204 */
2205 rdev_set_badblocks(rdev, addr, s, 0);
2206
2207 if (rdev != conf->mirrors[dw].rdev) {
2208 /* need bad block on destination too */
NeilBrown3cb03002011-10-11 16:45:26 +11002209 struct md_rdev *rdev2 = conf->mirrors[dw].rdev;
NeilBrown5e570282011-07-28 11:39:25 +10002210 addr = r10_bio->devs[1].addr + sect;
2211 ok = rdev_set_badblocks(rdev2, addr, s, 0);
2212 if (!ok) {
2213 /* just abort the recovery */
2214 printk(KERN_NOTICE
2215 "md/raid10:%s: recovery aborted"
2216 " due to read error\n",
2217 mdname(mddev));
2218
2219 conf->mirrors[dw].recovery_disabled
2220 = mddev->recovery_disabled;
2221 set_bit(MD_RECOVERY_INTR,
2222 &mddev->recovery);
2223 break;
2224 }
2225 }
2226 }
2227
2228 sectors -= s;
2229 sect += s;
2230 idx++;
2231 }
2232}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
NeilBrown9f2c9d12011-10-11 16:48:43 +11002234static void recovery_request_write(struct mddev *mddev, struct r10bio *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235{
NeilBrowne879a872011-10-11 16:49:02 +11002236 struct r10conf *conf = mddev->private;
Namhyung Kimc65060a2011-07-18 17:38:49 +10002237 int d;
NeilBrown24afd802011-12-23 10:17:55 +11002238 struct bio *wbio, *wbio2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
NeilBrown5e570282011-07-28 11:39:25 +10002240 if (!test_bit(R10BIO_Uptodate, &r10_bio->state)) {
2241 fix_recovery_read_error(r10_bio);
2242 end_sync_request(r10_bio);
2243 return;
2244 }
2245
Namhyung Kimc65060a2011-07-18 17:38:49 +10002246 /*
2247 * share the pages with the first bio
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 * and submit the write request
2249 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 d = r10_bio->devs[1].devnum;
NeilBrown24afd802011-12-23 10:17:55 +11002251 wbio = r10_bio->devs[1].bio;
2252 wbio2 = r10_bio->devs[1].repl_bio;
2253 if (wbio->bi_end_io) {
2254 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08002255 md_sync_acct(conf->mirrors[d].rdev->bdev, bio_sectors(wbio));
NeilBrown24afd802011-12-23 10:17:55 +11002256 generic_make_request(wbio);
2257 }
2258 if (wbio2 && wbio2->bi_end_io) {
2259 atomic_inc(&conf->mirrors[d].replacement->nr_pending);
2260 md_sync_acct(conf->mirrors[d].replacement->bdev,
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08002261 bio_sectors(wbio2));
NeilBrown24afd802011-12-23 10:17:55 +11002262 generic_make_request(wbio2);
2263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264}
2265
2266
2267/*
Robert Becker1e509152009-12-14 12:49:58 +11002268 * Used by fix_read_error() to decay the per rdev read_errors.
2269 * We halve the read error count for every hour that has elapsed
2270 * since the last recorded read error.
2271 *
2272 */
NeilBrownfd01b882011-10-11 16:47:53 +11002273static void check_decay_read_errors(struct mddev *mddev, struct md_rdev *rdev)
Robert Becker1e509152009-12-14 12:49:58 +11002274{
2275 struct timespec cur_time_mon;
2276 unsigned long hours_since_last;
2277 unsigned int read_errors = atomic_read(&rdev->read_errors);
2278
2279 ktime_get_ts(&cur_time_mon);
2280
2281 if (rdev->last_read_error.tv_sec == 0 &&
2282 rdev->last_read_error.tv_nsec == 0) {
2283 /* first time we've seen a read error */
2284 rdev->last_read_error = cur_time_mon;
2285 return;
2286 }
2287
2288 hours_since_last = (cur_time_mon.tv_sec -
2289 rdev->last_read_error.tv_sec) / 3600;
2290
2291 rdev->last_read_error = cur_time_mon;
2292
2293 /*
2294 * if hours_since_last is > the number of bits in read_errors
2295 * just set read errors to 0. We do this to avoid
2296 * overflowing the shift of read_errors by hours_since_last.
2297 */
2298 if (hours_since_last >= 8 * sizeof(read_errors))
2299 atomic_set(&rdev->read_errors, 0);
2300 else
2301 atomic_set(&rdev->read_errors, read_errors >> hours_since_last);
2302}
2303
NeilBrown3cb03002011-10-11 16:45:26 +11002304static int r10_sync_page_io(struct md_rdev *rdev, sector_t sector,
NeilBrown58c54fc2011-07-28 11:39:25 +10002305 int sectors, struct page *page, int rw)
2306{
2307 sector_t first_bad;
2308 int bad_sectors;
2309
2310 if (is_badblock(rdev, sector, sectors, &first_bad, &bad_sectors)
2311 && (rw == READ || test_bit(WriteErrorSeen, &rdev->flags)))
2312 return -1;
2313 if (sync_page_io(rdev, sector, sectors << 9, page, rw, false))
2314 /* success */
2315 return 1;
NeilBrownb7044d42011-12-23 10:17:56 +11002316 if (rw == WRITE) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002317 set_bit(WriteErrorSeen, &rdev->flags);
NeilBrownb7044d42011-12-23 10:17:56 +11002318 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2319 set_bit(MD_RECOVERY_NEEDED,
2320 &rdev->mddev->recovery);
2321 }
NeilBrown58c54fc2011-07-28 11:39:25 +10002322 /* need to record an error - either for the block or the device */
2323 if (!rdev_set_badblocks(rdev, sector, sectors, 0))
2324 md_error(rdev->mddev, rdev);
2325 return 0;
2326}
2327
Robert Becker1e509152009-12-14 12:49:58 +11002328/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 * This is a kernel thread which:
2330 *
2331 * 1. Retries failed read operations on working mirrors.
2332 * 2. Updates the raid superblock when problems encounter.
NeilBrown6814d532006-10-03 01:15:45 -07002333 * 3. Performs writes following reads for array synchronising.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 */
2335
NeilBrowne879a872011-10-11 16:49:02 +11002336static void fix_read_error(struct r10conf *conf, struct mddev *mddev, struct r10bio *r10_bio)
NeilBrown6814d532006-10-03 01:15:45 -07002337{
2338 int sect = 0; /* Offset from r10_bio->sector */
2339 int sectors = r10_bio->sectors;
NeilBrown3cb03002011-10-11 16:45:26 +11002340 struct md_rdev*rdev;
Robert Becker1e509152009-12-14 12:49:58 +11002341 int max_read_errors = atomic_read(&mddev->max_corr_read_errors);
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002342 int d = r10_bio->devs[r10_bio->read_slot].devnum;
Robert Becker1e509152009-12-14 12:49:58 +11002343
NeilBrown7c4e06f2011-05-11 14:53:17 +10002344 /* still own a reference to this rdev, so it cannot
2345 * have been cleared recently.
2346 */
2347 rdev = conf->mirrors[d].rdev;
Robert Becker1e509152009-12-14 12:49:58 +11002348
NeilBrown7c4e06f2011-05-11 14:53:17 +10002349 if (test_bit(Faulty, &rdev->flags))
2350 /* drive has already been failed, just ignore any
2351 more fix_read_error() attempts */
2352 return;
2353
2354 check_decay_read_errors(mddev, rdev);
2355 atomic_inc(&rdev->read_errors);
2356 if (atomic_read(&rdev->read_errors) > max_read_errors) {
2357 char b[BDEVNAME_SIZE];
Robert Becker1e509152009-12-14 12:49:58 +11002358 bdevname(rdev->bdev, b);
2359
NeilBrown7c4e06f2011-05-11 14:53:17 +10002360 printk(KERN_NOTICE
2361 "md/raid10:%s: %s: Raid device exceeded "
2362 "read_error threshold [cur %d:max %d]\n",
2363 mdname(mddev), b,
2364 atomic_read(&rdev->read_errors), max_read_errors);
2365 printk(KERN_NOTICE
2366 "md/raid10:%s: %s: Failing raid device\n",
2367 mdname(mddev), b);
2368 md_error(mddev, conf->mirrors[d].rdev);
NeilBrownfae8cc52012-02-14 11:10:10 +11002369 r10_bio->devs[r10_bio->read_slot].bio = IO_BLOCKED;
NeilBrown7c4e06f2011-05-11 14:53:17 +10002370 return;
Robert Becker1e509152009-12-14 12:49:58 +11002371 }
Robert Becker1e509152009-12-14 12:49:58 +11002372
NeilBrown6814d532006-10-03 01:15:45 -07002373 while(sectors) {
2374 int s = sectors;
2375 int sl = r10_bio->read_slot;
2376 int success = 0;
2377 int start;
2378
2379 if (s > (PAGE_SIZE>>9))
2380 s = PAGE_SIZE >> 9;
2381
2382 rcu_read_lock();
2383 do {
NeilBrown8dbed5c2011-07-28 11:39:24 +10002384 sector_t first_bad;
2385 int bad_sectors;
2386
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002387 d = r10_bio->devs[sl].devnum;
NeilBrown6814d532006-10-03 01:15:45 -07002388 rdev = rcu_dereference(conf->mirrors[d].rdev);
2389 if (rdev &&
NeilBrown050b6612012-03-19 12:46:39 +11002390 !test_bit(Unmerged, &rdev->flags) &&
NeilBrown8dbed5c2011-07-28 11:39:24 +10002391 test_bit(In_sync, &rdev->flags) &&
2392 is_badblock(rdev, r10_bio->devs[sl].addr + sect, s,
2393 &first_bad, &bad_sectors) == 0) {
NeilBrown6814d532006-10-03 01:15:45 -07002394 atomic_inc(&rdev->nr_pending);
2395 rcu_read_unlock();
NeilBrown2b193362010-10-27 15:16:40 +11002396 success = sync_page_io(rdev,
NeilBrown6814d532006-10-03 01:15:45 -07002397 r10_bio->devs[sl].addr +
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11002398 sect,
NeilBrown6814d532006-10-03 01:15:45 -07002399 s<<9,
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11002400 conf->tmppage, READ, false);
NeilBrown6814d532006-10-03 01:15:45 -07002401 rdev_dec_pending(rdev, mddev);
2402 rcu_read_lock();
2403 if (success)
2404 break;
2405 }
2406 sl++;
2407 if (sl == conf->copies)
2408 sl = 0;
2409 } while (!success && sl != r10_bio->read_slot);
2410 rcu_read_unlock();
2411
2412 if (!success) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002413 /* Cannot read from anywhere, just mark the block
2414 * as bad on the first device to discourage future
2415 * reads.
2416 */
NeilBrown6814d532006-10-03 01:15:45 -07002417 int dn = r10_bio->devs[r10_bio->read_slot].devnum;
NeilBrown58c54fc2011-07-28 11:39:25 +10002418 rdev = conf->mirrors[dn].rdev;
2419
2420 if (!rdev_set_badblocks(
2421 rdev,
2422 r10_bio->devs[r10_bio->read_slot].addr
2423 + sect,
NeilBrownfae8cc52012-02-14 11:10:10 +11002424 s, 0)) {
NeilBrown58c54fc2011-07-28 11:39:25 +10002425 md_error(mddev, rdev);
NeilBrownfae8cc52012-02-14 11:10:10 +11002426 r10_bio->devs[r10_bio->read_slot].bio
2427 = IO_BLOCKED;
2428 }
NeilBrown6814d532006-10-03 01:15:45 -07002429 break;
2430 }
2431
2432 start = sl;
2433 /* write it back and re-read */
2434 rcu_read_lock();
2435 while (sl != r10_bio->read_slot) {
Robert Becker67b8dc42009-12-14 12:49:57 +11002436 char b[BDEVNAME_SIZE];
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002437
NeilBrown6814d532006-10-03 01:15:45 -07002438 if (sl==0)
2439 sl = conf->copies;
2440 sl--;
2441 d = r10_bio->devs[sl].devnum;
2442 rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown1294b9c2011-07-28 11:39:23 +10002443 if (!rdev ||
NeilBrown050b6612012-03-19 12:46:39 +11002444 test_bit(Unmerged, &rdev->flags) ||
NeilBrown1294b9c2011-07-28 11:39:23 +10002445 !test_bit(In_sync, &rdev->flags))
2446 continue;
2447
2448 atomic_inc(&rdev->nr_pending);
2449 rcu_read_unlock();
NeilBrown58c54fc2011-07-28 11:39:25 +10002450 if (r10_sync_page_io(rdev,
2451 r10_bio->devs[sl].addr +
2452 sect,
NeilBrown055d3742012-07-03 15:55:33 +10002453 s, conf->tmppage, WRITE)
NeilBrown1294b9c2011-07-28 11:39:23 +10002454 == 0) {
2455 /* Well, this device is dead */
2456 printk(KERN_NOTICE
2457 "md/raid10:%s: read correction "
2458 "write failed"
2459 " (%d sectors at %llu on %s)\n",
2460 mdname(mddev), s,
2461 (unsigned long long)(
NeilBrownf8c9e742012-05-21 09:28:33 +10002462 sect +
2463 choose_data_offset(r10_bio,
2464 rdev)),
NeilBrown1294b9c2011-07-28 11:39:23 +10002465 bdevname(rdev->bdev, b));
2466 printk(KERN_NOTICE "md/raid10:%s: %s: failing "
2467 "drive\n",
2468 mdname(mddev),
2469 bdevname(rdev->bdev, b));
NeilBrown6814d532006-10-03 01:15:45 -07002470 }
NeilBrown1294b9c2011-07-28 11:39:23 +10002471 rdev_dec_pending(rdev, mddev);
2472 rcu_read_lock();
NeilBrown6814d532006-10-03 01:15:45 -07002473 }
2474 sl = start;
2475 while (sl != r10_bio->read_slot) {
NeilBrown1294b9c2011-07-28 11:39:23 +10002476 char b[BDEVNAME_SIZE];
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10002477
NeilBrown6814d532006-10-03 01:15:45 -07002478 if (sl==0)
2479 sl = conf->copies;
2480 sl--;
2481 d = r10_bio->devs[sl].devnum;
2482 rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown1294b9c2011-07-28 11:39:23 +10002483 if (!rdev ||
2484 !test_bit(In_sync, &rdev->flags))
2485 continue;
Robert Becker67b8dc42009-12-14 12:49:57 +11002486
NeilBrown1294b9c2011-07-28 11:39:23 +10002487 atomic_inc(&rdev->nr_pending);
2488 rcu_read_unlock();
NeilBrown58c54fc2011-07-28 11:39:25 +10002489 switch (r10_sync_page_io(rdev,
2490 r10_bio->devs[sl].addr +
2491 sect,
NeilBrown055d3742012-07-03 15:55:33 +10002492 s, conf->tmppage,
NeilBrown58c54fc2011-07-28 11:39:25 +10002493 READ)) {
2494 case 0:
NeilBrown1294b9c2011-07-28 11:39:23 +10002495 /* Well, this device is dead */
2496 printk(KERN_NOTICE
2497 "md/raid10:%s: unable to read back "
2498 "corrected sectors"
2499 " (%d sectors at %llu on %s)\n",
2500 mdname(mddev), s,
2501 (unsigned long long)(
NeilBrownf8c9e742012-05-21 09:28:33 +10002502 sect +
2503 choose_data_offset(r10_bio, rdev)),
NeilBrown1294b9c2011-07-28 11:39:23 +10002504 bdevname(rdev->bdev, b));
2505 printk(KERN_NOTICE "md/raid10:%s: %s: failing "
2506 "drive\n",
2507 mdname(mddev),
2508 bdevname(rdev->bdev, b));
NeilBrown58c54fc2011-07-28 11:39:25 +10002509 break;
2510 case 1:
NeilBrown1294b9c2011-07-28 11:39:23 +10002511 printk(KERN_INFO
2512 "md/raid10:%s: read error corrected"
2513 " (%d sectors at %llu on %s)\n",
2514 mdname(mddev), s,
2515 (unsigned long long)(
NeilBrownf8c9e742012-05-21 09:28:33 +10002516 sect +
2517 choose_data_offset(r10_bio, rdev)),
NeilBrown1294b9c2011-07-28 11:39:23 +10002518 bdevname(rdev->bdev, b));
2519 atomic_add(s, &rdev->corrected_errors);
NeilBrown6814d532006-10-03 01:15:45 -07002520 }
NeilBrown1294b9c2011-07-28 11:39:23 +10002521
2522 rdev_dec_pending(rdev, mddev);
2523 rcu_read_lock();
NeilBrown6814d532006-10-03 01:15:45 -07002524 }
2525 rcu_read_unlock();
2526
2527 sectors -= s;
2528 sect += s;
2529 }
2530}
2531
NeilBrown9f2c9d12011-10-11 16:48:43 +11002532static int narrow_write_error(struct r10bio *r10_bio, int i)
NeilBrownbd870a12011-07-28 11:39:24 +10002533{
2534 struct bio *bio = r10_bio->master_bio;
NeilBrownfd01b882011-10-11 16:47:53 +11002535 struct mddev *mddev = r10_bio->mddev;
NeilBrowne879a872011-10-11 16:49:02 +11002536 struct r10conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11002537 struct md_rdev *rdev = conf->mirrors[r10_bio->devs[i].devnum].rdev;
NeilBrownbd870a12011-07-28 11:39:24 +10002538 /* bio has the data to be written to slot 'i' where
2539 * we just recently had a write error.
2540 * We repeatedly clone the bio and trim down to one block,
2541 * then try the write. Where the write fails we record
2542 * a bad block.
2543 * It is conceivable that the bio doesn't exactly align with
2544 * blocks. We must handle this.
2545 *
2546 * We currently own a reference to the rdev.
2547 */
2548
2549 int block_sectors;
2550 sector_t sector;
2551 int sectors;
2552 int sect_to_write = r10_bio->sectors;
2553 int ok = 1;
2554
2555 if (rdev->badblocks.shift < 0)
2556 return 0;
2557
2558 block_sectors = 1 << rdev->badblocks.shift;
2559 sector = r10_bio->sector;
2560 sectors = ((r10_bio->sector + block_sectors)
2561 & ~(sector_t)(block_sectors - 1))
2562 - sector;
2563
2564 while (sect_to_write) {
2565 struct bio *wbio;
2566 if (sectors > sect_to_write)
2567 sectors = sect_to_write;
2568 /* Write at 'sector' for 'sectors' */
2569 wbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
2570 md_trim_bio(wbio, sector - bio->bi_sector, sectors);
2571 wbio->bi_sector = (r10_bio->devs[i].addr+
NeilBrownf8c9e742012-05-21 09:28:33 +10002572 choose_data_offset(r10_bio, rdev) +
NeilBrownbd870a12011-07-28 11:39:24 +10002573 (sector - r10_bio->sector));
2574 wbio->bi_bdev = rdev->bdev;
2575 if (submit_bio_wait(WRITE, wbio) == 0)
2576 /* Failure! */
2577 ok = rdev_set_badblocks(rdev, sector,
2578 sectors, 0)
2579 && ok;
2580
2581 bio_put(wbio);
2582 sect_to_write -= sectors;
2583 sector += sectors;
2584 sectors = block_sectors;
2585 }
2586 return ok;
2587}
2588
NeilBrown9f2c9d12011-10-11 16:48:43 +11002589static void handle_read_error(struct mddev *mddev, struct r10bio *r10_bio)
NeilBrown560f8e52011-07-28 11:39:23 +10002590{
2591 int slot = r10_bio->read_slot;
NeilBrown560f8e52011-07-28 11:39:23 +10002592 struct bio *bio;
NeilBrowne879a872011-10-11 16:49:02 +11002593 struct r10conf *conf = mddev->private;
NeilBrownabbf0982011-12-23 10:17:54 +11002594 struct md_rdev *rdev = r10_bio->devs[slot].rdev;
NeilBrown560f8e52011-07-28 11:39:23 +10002595 char b[BDEVNAME_SIZE];
2596 unsigned long do_sync;
NeilBrown856e08e2011-07-28 11:39:23 +10002597 int max_sectors;
NeilBrown560f8e52011-07-28 11:39:23 +10002598
2599 /* we got a read error. Maybe the drive is bad. Maybe just
2600 * the block and we can fix it.
2601 * We freeze all other IO, and try reading the block from
2602 * other devices. When we find one, we re-write
2603 * and check it that fixes the read error.
2604 * This is all done synchronously while the array is
2605 * frozen.
2606 */
NeilBrownfae8cc52012-02-14 11:10:10 +11002607 bio = r10_bio->devs[slot].bio;
2608 bdevname(bio->bi_bdev, b);
2609 bio_put(bio);
2610 r10_bio->devs[slot].bio = NULL;
2611
NeilBrown560f8e52011-07-28 11:39:23 +10002612 if (mddev->ro == 0) {
2613 freeze_array(conf);
2614 fix_read_error(conf, mddev, r10_bio);
2615 unfreeze_array(conf);
NeilBrownfae8cc52012-02-14 11:10:10 +11002616 } else
2617 r10_bio->devs[slot].bio = IO_BLOCKED;
2618
NeilBrownabbf0982011-12-23 10:17:54 +11002619 rdev_dec_pending(rdev, mddev);
NeilBrown560f8e52011-07-28 11:39:23 +10002620
NeilBrown7399c312011-07-28 11:39:23 +10002621read_more:
NeilBrown96c3fd12011-12-23 10:17:54 +11002622 rdev = read_balance(conf, r10_bio, &max_sectors);
2623 if (rdev == NULL) {
NeilBrown560f8e52011-07-28 11:39:23 +10002624 printk(KERN_ALERT "md/raid10:%s: %s: unrecoverable I/O"
2625 " read error for block %llu\n",
NeilBrown7399c312011-07-28 11:39:23 +10002626 mdname(mddev), b,
NeilBrown560f8e52011-07-28 11:39:23 +10002627 (unsigned long long)r10_bio->sector);
2628 raid_end_bio_io(r10_bio);
NeilBrown560f8e52011-07-28 11:39:23 +10002629 return;
2630 }
2631
2632 do_sync = (r10_bio->master_bio->bi_rw & REQ_SYNC);
NeilBrown560f8e52011-07-28 11:39:23 +10002633 slot = r10_bio->read_slot;
NeilBrown560f8e52011-07-28 11:39:23 +10002634 printk_ratelimited(
2635 KERN_ERR
NeilBrown055d3742012-07-03 15:55:33 +10002636 "md/raid10:%s: %s: redirecting "
NeilBrown560f8e52011-07-28 11:39:23 +10002637 "sector %llu to another mirror\n",
2638 mdname(mddev),
2639 bdevname(rdev->bdev, b),
2640 (unsigned long long)r10_bio->sector);
2641 bio = bio_clone_mddev(r10_bio->master_bio,
2642 GFP_NOIO, mddev);
NeilBrown7399c312011-07-28 11:39:23 +10002643 md_trim_bio(bio,
2644 r10_bio->sector - bio->bi_sector,
2645 max_sectors);
NeilBrown560f8e52011-07-28 11:39:23 +10002646 r10_bio->devs[slot].bio = bio;
NeilBrownabbf0982011-12-23 10:17:54 +11002647 r10_bio->devs[slot].rdev = rdev;
NeilBrown560f8e52011-07-28 11:39:23 +10002648 bio->bi_sector = r10_bio->devs[slot].addr
NeilBrownf8c9e742012-05-21 09:28:33 +10002649 + choose_data_offset(r10_bio, rdev);
NeilBrown560f8e52011-07-28 11:39:23 +10002650 bio->bi_bdev = rdev->bdev;
2651 bio->bi_rw = READ | do_sync;
2652 bio->bi_private = r10_bio;
2653 bio->bi_end_io = raid10_end_read_request;
NeilBrown7399c312011-07-28 11:39:23 +10002654 if (max_sectors < r10_bio->sectors) {
2655 /* Drat - have to split this up more */
2656 struct bio *mbio = r10_bio->master_bio;
2657 int sectors_handled =
2658 r10_bio->sector + max_sectors
2659 - mbio->bi_sector;
2660 r10_bio->sectors = max_sectors;
2661 spin_lock_irq(&conf->device_lock);
2662 if (mbio->bi_phys_segments == 0)
2663 mbio->bi_phys_segments = 2;
2664 else
2665 mbio->bi_phys_segments++;
2666 spin_unlock_irq(&conf->device_lock);
2667 generic_make_request(bio);
NeilBrown7399c312011-07-28 11:39:23 +10002668
2669 r10_bio = mempool_alloc(conf->r10bio_pool,
2670 GFP_NOIO);
2671 r10_bio->master_bio = mbio;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08002672 r10_bio->sectors = bio_sectors(mbio) - sectors_handled;
NeilBrown7399c312011-07-28 11:39:23 +10002673 r10_bio->state = 0;
2674 set_bit(R10BIO_ReadError,
2675 &r10_bio->state);
2676 r10_bio->mddev = mddev;
2677 r10_bio->sector = mbio->bi_sector
2678 + sectors_handled;
2679
2680 goto read_more;
2681 } else
2682 generic_make_request(bio);
NeilBrown560f8e52011-07-28 11:39:23 +10002683}
2684
NeilBrowne879a872011-10-11 16:49:02 +11002685static void handle_write_completed(struct r10conf *conf, struct r10bio *r10_bio)
NeilBrown749c55e2011-07-28 11:39:24 +10002686{
2687 /* Some sort of write request has finished and it
2688 * succeeded in writing where we thought there was a
2689 * bad block. So forget the bad block.
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002690 * Or possibly if failed and we need to record
2691 * a bad block.
NeilBrown749c55e2011-07-28 11:39:24 +10002692 */
2693 int m;
NeilBrown3cb03002011-10-11 16:45:26 +11002694 struct md_rdev *rdev;
NeilBrown749c55e2011-07-28 11:39:24 +10002695
2696 if (test_bit(R10BIO_IsSync, &r10_bio->state) ||
2697 test_bit(R10BIO_IsRecover, &r10_bio->state)) {
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002698 for (m = 0; m < conf->copies; m++) {
2699 int dev = r10_bio->devs[m].devnum;
2700 rdev = conf->mirrors[dev].rdev;
2701 if (r10_bio->devs[m].bio == NULL)
2702 continue;
2703 if (test_bit(BIO_UPTODATE,
NeilBrown749c55e2011-07-28 11:39:24 +10002704 &r10_bio->devs[m].bio->bi_flags)) {
NeilBrown749c55e2011-07-28 11:39:24 +10002705 rdev_clear_badblocks(
2706 rdev,
2707 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002708 r10_bio->sectors, 0);
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002709 } else {
2710 if (!rdev_set_badblocks(
2711 rdev,
2712 r10_bio->devs[m].addr,
2713 r10_bio->sectors, 0))
2714 md_error(conf->mddev, rdev);
NeilBrown749c55e2011-07-28 11:39:24 +10002715 }
NeilBrown9ad1aef2011-12-23 10:17:55 +11002716 rdev = conf->mirrors[dev].replacement;
2717 if (r10_bio->devs[m].repl_bio == NULL)
2718 continue;
2719 if (test_bit(BIO_UPTODATE,
2720 &r10_bio->devs[m].repl_bio->bi_flags)) {
2721 rdev_clear_badblocks(
2722 rdev,
2723 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002724 r10_bio->sectors, 0);
NeilBrown9ad1aef2011-12-23 10:17:55 +11002725 } else {
2726 if (!rdev_set_badblocks(
2727 rdev,
2728 r10_bio->devs[m].addr,
2729 r10_bio->sectors, 0))
2730 md_error(conf->mddev, rdev);
2731 }
NeilBrown1a0b7cd2011-07-28 11:39:25 +10002732 }
NeilBrown749c55e2011-07-28 11:39:24 +10002733 put_buf(r10_bio);
2734 } else {
NeilBrownbd870a12011-07-28 11:39:24 +10002735 for (m = 0; m < conf->copies; m++) {
2736 int dev = r10_bio->devs[m].devnum;
2737 struct bio *bio = r10_bio->devs[m].bio;
2738 rdev = conf->mirrors[dev].rdev;
2739 if (bio == IO_MADE_GOOD) {
NeilBrown749c55e2011-07-28 11:39:24 +10002740 rdev_clear_badblocks(
2741 rdev,
2742 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002743 r10_bio->sectors, 0);
NeilBrown749c55e2011-07-28 11:39:24 +10002744 rdev_dec_pending(rdev, conf->mddev);
NeilBrownbd870a12011-07-28 11:39:24 +10002745 } else if (bio != NULL &&
2746 !test_bit(BIO_UPTODATE, &bio->bi_flags)) {
2747 if (!narrow_write_error(r10_bio, m)) {
2748 md_error(conf->mddev, rdev);
2749 set_bit(R10BIO_Degraded,
2750 &r10_bio->state);
2751 }
2752 rdev_dec_pending(rdev, conf->mddev);
NeilBrown749c55e2011-07-28 11:39:24 +10002753 }
NeilBrown475b0322011-12-23 10:17:55 +11002754 bio = r10_bio->devs[m].repl_bio;
2755 rdev = conf->mirrors[dev].replacement;
NeilBrown4ca40c22011-12-23 10:17:55 +11002756 if (rdev && bio == IO_MADE_GOOD) {
NeilBrown475b0322011-12-23 10:17:55 +11002757 rdev_clear_badblocks(
2758 rdev,
2759 r10_bio->devs[m].addr,
NeilBrownc6563a82012-05-21 09:27:00 +10002760 r10_bio->sectors, 0);
NeilBrown475b0322011-12-23 10:17:55 +11002761 rdev_dec_pending(rdev, conf->mddev);
2762 }
NeilBrownbd870a12011-07-28 11:39:24 +10002763 }
2764 if (test_bit(R10BIO_WriteError,
2765 &r10_bio->state))
2766 close_write(r10_bio);
NeilBrown749c55e2011-07-28 11:39:24 +10002767 raid_end_bio_io(r10_bio);
2768 }
2769}
2770
Shaohua Li4ed87312012-10-11 13:34:00 +11002771static void raid10d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772{
Shaohua Li4ed87312012-10-11 13:34:00 +11002773 struct mddev *mddev = thread->mddev;
NeilBrown9f2c9d12011-10-11 16:48:43 +11002774 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 unsigned long flags;
NeilBrowne879a872011-10-11 16:49:02 +11002776 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 struct list_head *head = &conf->retry_list;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002778 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
2780 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002782 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 for (;;) {
NeilBrowna35e63e2008-03-04 14:29:29 -08002784
NeilBrown0021b7b2012-07-31 09:08:14 +02002785 flush_pending_writes(conf);
NeilBrowna35e63e2008-03-04 14:29:29 -08002786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08002788 if (list_empty(head)) {
NeilBrown6cce3b22006-01-06 00:20:16 -08002789 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08002791 }
NeilBrown9f2c9d12011-10-11 16:48:43 +11002792 r10_bio = list_entry(head->prev, struct r10bio, retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 list_del(head->prev);
NeilBrown4443ae12006-01-06 00:20:28 -08002794 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 spin_unlock_irqrestore(&conf->device_lock, flags);
2796
2797 mddev = r10_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10002798 conf = mddev->private;
NeilBrownbd870a12011-07-28 11:39:24 +10002799 if (test_bit(R10BIO_MadeGood, &r10_bio->state) ||
2800 test_bit(R10BIO_WriteError, &r10_bio->state))
NeilBrown749c55e2011-07-28 11:39:24 +10002801 handle_write_completed(conf, r10_bio);
NeilBrown3ea7daa2012-05-22 13:53:47 +10002802 else if (test_bit(R10BIO_IsReshape, &r10_bio->state))
2803 reshape_request_write(mddev, r10_bio);
NeilBrown749c55e2011-07-28 11:39:24 +10002804 else if (test_bit(R10BIO_IsSync, &r10_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 sync_request_write(mddev, r10_bio);
Jens Axboe7eaceac2011-03-10 08:52:07 +01002806 else if (test_bit(R10BIO_IsRecover, &r10_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 recovery_request_write(mddev, r10_bio);
NeilBrown856e08e2011-07-28 11:39:23 +10002808 else if (test_bit(R10BIO_ReadError, &r10_bio->state))
NeilBrown560f8e52011-07-28 11:39:23 +10002809 handle_read_error(mddev, r10_bio);
NeilBrown856e08e2011-07-28 11:39:23 +10002810 else {
2811 /* just a partial read to be scheduled from a
2812 * separate context
2813 */
2814 int slot = r10_bio->read_slot;
2815 generic_make_request(r10_bio->devs[slot].bio);
2816 }
NeilBrown4443ae12006-01-06 00:20:28 -08002817
NeilBrown1d9d5242009-10-16 15:55:32 +11002818 cond_resched();
NeilBrownde393cd2011-07-28 11:31:48 +10002819 if (mddev->flags & ~(1<<MD_CHANGE_PENDING))
2820 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 }
NeilBrowne1dfa0a2011-04-18 18:25:41 +10002822 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823}
2824
2825
NeilBrowne879a872011-10-11 16:49:02 +11002826static int init_resync(struct r10conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827{
2828 int buffs;
NeilBrown69335ef2011-12-23 10:17:54 +11002829 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
2831 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhennb6385482006-04-02 13:34:29 +02002832 BUG_ON(conf->r10buf_pool);
NeilBrown69335ef2011-12-23 10:17:54 +11002833 conf->have_replacement = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +10002834 for (i = 0; i < conf->geo.raid_disks; i++)
NeilBrown69335ef2011-12-23 10:17:54 +11002835 if (conf->mirrors[i].replacement)
2836 conf->have_replacement = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 conf->r10buf_pool = mempool_create(buffs, r10buf_pool_alloc, r10buf_pool_free, conf);
2838 if (!conf->r10buf_pool)
2839 return -ENOMEM;
2840 conf->next_resync = 0;
2841 return 0;
2842}
2843
2844/*
2845 * perform a "sync" on one "block"
2846 *
2847 * We need to make sure that no normal I/O request - particularly write
2848 * requests - conflict with active sync requests.
2849 *
2850 * This is achieved by tracking pending requests and a 'barrier' concept
2851 * that can be installed to exclude normal IO requests.
2852 *
2853 * Resync and recovery are handled very differently.
2854 * We differentiate by looking at MD_RECOVERY_SYNC in mddev->recovery.
2855 *
2856 * For resync, we iterate over virtual addresses, read all copies,
2857 * and update if there are differences. If only one copy is live,
2858 * skip it.
2859 * For recovery, we iterate over physical addresses, read a good
2860 * value for each non-in_sync drive, and over-write.
2861 *
2862 * So, for recovery we may have several outstanding complex requests for a
2863 * given address, one for each out-of-sync device. We model this by allocating
2864 * a number of r10_bio structures, one for each out-of-sync device.
2865 * As we setup these structures, we collect all bio's together into a list
2866 * which we then process collectively to add pages, and then process again
2867 * to pass to generic_make_request.
2868 *
2869 * The r10_bio structures are linked using a borrowed master_bio pointer.
2870 * This link is counted in ->remaining. When the r10_bio that points to NULL
2871 * has its remaining count decremented to 0, the whole complex operation
2872 * is complete.
2873 *
2874 */
2875
NeilBrownfd01b882011-10-11 16:47:53 +11002876static sector_t sync_request(struct mddev *mddev, sector_t sector_nr,
NeilBrownab9d47e2011-05-11 14:54:41 +10002877 int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878{
NeilBrowne879a872011-10-11 16:49:02 +11002879 struct r10conf *conf = mddev->private;
NeilBrown9f2c9d12011-10-11 16:48:43 +11002880 struct r10bio *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 struct bio *biolist = NULL, *bio;
2882 sector_t max_sector, nr_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 int i;
NeilBrown6cce3b22006-01-06 00:20:16 -08002884 int max_sync;
NeilBrown57dab0b2010-10-19 10:03:39 +11002885 sector_t sync_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 sector_t sectors_skipped = 0;
2887 int chunks_skipped = 0;
NeilBrown5cf00fc2012-05-21 09:28:20 +10002888 sector_t chunk_mask = conf->geo.chunk_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
2890 if (!conf->r10buf_pool)
2891 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07002892 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
2894 skipped:
Andre Noll58c0fed2009-03-31 14:33:13 +11002895 max_sector = mddev->dev_sectors;
NeilBrown3ea7daa2012-05-22 13:53:47 +10002896 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) ||
2897 test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 max_sector = mddev->resync_max_sectors;
2899 if (sector_nr >= max_sector) {
NeilBrown6cce3b22006-01-06 00:20:16 -08002900 /* If we aborted, we need to abort the
2901 * sync on the 'current' bitmap chucks (there can
2902 * be several when recovering multiple devices).
2903 * as we may have started syncing it but not finished.
2904 * We can find the current address in
2905 * mddev->curr_resync, but for recovery,
2906 * we need to convert that to several
2907 * virtual addresses.
2908 */
NeilBrown3ea7daa2012-05-22 13:53:47 +10002909 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
2910 end_reshape(conf);
2911 return 0;
2912 }
2913
NeilBrown6cce3b22006-01-06 00:20:16 -08002914 if (mddev->curr_resync < max_sector) { /* aborted */
2915 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery))
2916 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
2917 &sync_blocks, 1);
NeilBrown5cf00fc2012-05-21 09:28:20 +10002918 else for (i = 0; i < conf->geo.raid_disks; i++) {
NeilBrown6cce3b22006-01-06 00:20:16 -08002919 sector_t sect =
2920 raid10_find_virt(conf, mddev->curr_resync, i);
2921 bitmap_end_sync(mddev->bitmap, sect,
2922 &sync_blocks, 1);
2923 }
NeilBrown9ad1aef2011-12-23 10:17:55 +11002924 } else {
2925 /* completed sync */
2926 if ((!mddev->bitmap || conf->fullsync)
2927 && conf->have_replacement
2928 && test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
2929 /* Completed a full sync so the replacements
2930 * are now fully recovered.
2931 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10002932 for (i = 0; i < conf->geo.raid_disks; i++)
NeilBrown9ad1aef2011-12-23 10:17:55 +11002933 if (conf->mirrors[i].replacement)
2934 conf->mirrors[i].replacement
2935 ->recovery_offset
2936 = MaxSector;
2937 }
NeilBrown6cce3b22006-01-06 00:20:16 -08002938 conf->fullsync = 0;
NeilBrown9ad1aef2011-12-23 10:17:55 +11002939 }
NeilBrown6cce3b22006-01-06 00:20:16 -08002940 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 close_sync(conf);
NeilBrown57afd892005-06-21 17:17:13 -07002942 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 return sectors_skipped;
2944 }
NeilBrown3ea7daa2012-05-22 13:53:47 +10002945
2946 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
2947 return reshape_request(mddev, sector_nr, skipped);
2948
NeilBrown5cf00fc2012-05-21 09:28:20 +10002949 if (chunks_skipped >= conf->geo.raid_disks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 /* if there has been nothing to do on any drive,
2951 * then there is nothing to do at all..
2952 */
NeilBrown57afd892005-06-21 17:17:13 -07002953 *skipped = 1;
2954 return (max_sector - sector_nr) + sectors_skipped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 }
2956
NeilBrownc6207272008-02-06 01:39:52 -08002957 if (max_sector > mddev->resync_max)
2958 max_sector = mddev->resync_max; /* Don't do IO beyond here */
2959
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 /* make sure whole request will fit in a chunk - if chunks
2961 * are meaningful
2962 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10002963 if (conf->geo.near_copies < conf->geo.raid_disks &&
2964 max_sector > (sector_nr | chunk_mask))
2965 max_sector = (sector_nr | chunk_mask) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 /*
2967 * If there is non-resync activity waiting for us then
2968 * put in a delay to throttle resync.
2969 */
NeilBrown0a27ec92006-01-06 00:20:13 -08002970 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 msleep_interruptible(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
2973 /* Again, very different code for resync and recovery.
2974 * Both must result in an r10bio with a list of bios that
2975 * have bi_end_io, bi_sector, bi_bdev set,
2976 * and bi_private set to the r10bio.
2977 * For recovery, we may actually create several r10bios
2978 * with 2 bios in each, that correspond to the bios in the main one.
2979 * In this case, the subordinate r10bios link back through a
2980 * borrowed master_bio pointer, and the counter in the master
2981 * includes a ref from each subordinate.
2982 */
2983 /* First, we decide what to do and set ->bi_end_io
2984 * To end_sync_read if we want to read, and
2985 * end_sync_write if we will want to write.
2986 */
2987
NeilBrown6cce3b22006-01-06 00:20:16 -08002988 max_sync = RESYNC_PAGES << (PAGE_SHIFT-9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 if (!test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
2990 /* recovery... the complicated one */
NeilBrowne875ece2011-07-28 11:39:24 +10002991 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 r10_bio = NULL;
2993
NeilBrown5cf00fc2012-05-21 09:28:20 +10002994 for (i = 0 ; i < conf->geo.raid_disks; i++) {
NeilBrownab9d47e2011-05-11 14:54:41 +10002995 int still_degraded;
NeilBrown9f2c9d12011-10-11 16:48:43 +11002996 struct r10bio *rb2;
NeilBrownab9d47e2011-05-11 14:54:41 +10002997 sector_t sect;
2998 int must_sync;
NeilBrowne875ece2011-07-28 11:39:24 +10002999 int any_working;
Jonathan Brassowdc280d92012-07-31 10:03:52 +10003000 struct raid10_info *mirror = &conf->mirrors[i];
NeilBrownab9d47e2011-05-11 14:54:41 +10003001
NeilBrown24afd802011-12-23 10:17:55 +11003002 if ((mirror->rdev == NULL ||
3003 test_bit(In_sync, &mirror->rdev->flags))
3004 &&
3005 (mirror->replacement == NULL ||
3006 test_bit(Faulty,
3007 &mirror->replacement->flags)))
NeilBrownab9d47e2011-05-11 14:54:41 +10003008 continue;
3009
3010 still_degraded = 0;
3011 /* want to reconstruct this device */
3012 rb2 = r10_bio;
3013 sect = raid10_find_virt(conf, sector_nr, i);
NeilBrownfc448a12012-07-03 10:37:30 +10003014 if (sect >= mddev->resync_max_sectors) {
3015 /* last stripe is not complete - don't
3016 * try to recover this sector.
3017 */
3018 continue;
3019 }
NeilBrown24afd802011-12-23 10:17:55 +11003020 /* Unless we are doing a full sync, or a replacement
3021 * we only need to recover the block if it is set in
3022 * the bitmap
NeilBrownab9d47e2011-05-11 14:54:41 +10003023 */
3024 must_sync = bitmap_start_sync(mddev->bitmap, sect,
3025 &sync_blocks, 1);
3026 if (sync_blocks < max_sync)
3027 max_sync = sync_blocks;
3028 if (!must_sync &&
NeilBrown24afd802011-12-23 10:17:55 +11003029 mirror->replacement == NULL &&
NeilBrownab9d47e2011-05-11 14:54:41 +10003030 !conf->fullsync) {
3031 /* yep, skip the sync_blocks here, but don't assume
3032 * that there will never be anything to do here
NeilBrown6cce3b22006-01-06 00:20:16 -08003033 */
NeilBrownab9d47e2011-05-11 14:54:41 +10003034 chunks_skipped = -1;
3035 continue;
3036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037
NeilBrownab9d47e2011-05-11 14:54:41 +10003038 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
3039 raise_barrier(conf, rb2 != NULL);
3040 atomic_set(&r10_bio->remaining, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
NeilBrownab9d47e2011-05-11 14:54:41 +10003042 r10_bio->master_bio = (struct bio*)rb2;
3043 if (rb2)
3044 atomic_inc(&rb2->remaining);
3045 r10_bio->mddev = mddev;
3046 set_bit(R10BIO_IsRecover, &r10_bio->state);
3047 r10_bio->sector = sect;
NeilBrown6cce3b22006-01-06 00:20:16 -08003048
NeilBrownab9d47e2011-05-11 14:54:41 +10003049 raid10_find_phys(conf, r10_bio);
NeilBrown18055562009-05-07 12:48:10 +10003050
NeilBrownab9d47e2011-05-11 14:54:41 +10003051 /* Need to check if the array will still be
3052 * degraded
3053 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10003054 for (j = 0; j < conf->geo.raid_disks; j++)
NeilBrownab9d47e2011-05-11 14:54:41 +10003055 if (conf->mirrors[j].rdev == NULL ||
3056 test_bit(Faulty, &conf->mirrors[j].rdev->flags)) {
3057 still_degraded = 1;
NeilBrown87fc7672005-09-09 16:24:04 -07003058 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003060
3061 must_sync = bitmap_start_sync(mddev->bitmap, sect,
3062 &sync_blocks, still_degraded);
3063
NeilBrowne875ece2011-07-28 11:39:24 +10003064 any_working = 0;
NeilBrownab9d47e2011-05-11 14:54:41 +10003065 for (j=0; j<conf->copies;j++) {
NeilBrowne875ece2011-07-28 11:39:24 +10003066 int k;
NeilBrownab9d47e2011-05-11 14:54:41 +10003067 int d = r10_bio->devs[j].devnum;
NeilBrown5e570282011-07-28 11:39:25 +10003068 sector_t from_addr, to_addr;
NeilBrown3cb03002011-10-11 16:45:26 +11003069 struct md_rdev *rdev;
NeilBrown40c356c2011-07-28 11:39:24 +10003070 sector_t sector, first_bad;
3071 int bad_sectors;
NeilBrownab9d47e2011-05-11 14:54:41 +10003072 if (!conf->mirrors[d].rdev ||
3073 !test_bit(In_sync, &conf->mirrors[d].rdev->flags))
3074 continue;
3075 /* This is where we read from */
NeilBrowne875ece2011-07-28 11:39:24 +10003076 any_working = 1;
NeilBrown40c356c2011-07-28 11:39:24 +10003077 rdev = conf->mirrors[d].rdev;
3078 sector = r10_bio->devs[j].addr;
3079
3080 if (is_badblock(rdev, sector, max_sync,
3081 &first_bad, &bad_sectors)) {
3082 if (first_bad > sector)
3083 max_sync = first_bad - sector;
3084 else {
3085 bad_sectors -= (sector
3086 - first_bad);
3087 if (max_sync > bad_sectors)
3088 max_sync = bad_sectors;
3089 continue;
3090 }
3091 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003092 bio = r10_bio->devs[0].bio;
3093 bio->bi_next = biolist;
3094 biolist = bio;
3095 bio->bi_private = r10_bio;
3096 bio->bi_end_io = end_sync_read;
3097 bio->bi_rw = READ;
NeilBrown5e570282011-07-28 11:39:25 +10003098 from_addr = r10_bio->devs[j].addr;
NeilBrown24afd802011-12-23 10:17:55 +11003099 bio->bi_sector = from_addr + rdev->data_offset;
3100 bio->bi_bdev = rdev->bdev;
3101 atomic_inc(&rdev->nr_pending);
3102 /* and we write to 'i' (if not in_sync) */
NeilBrownab9d47e2011-05-11 14:54:41 +10003103
3104 for (k=0; k<conf->copies; k++)
3105 if (r10_bio->devs[k].devnum == i)
3106 break;
3107 BUG_ON(k == conf->copies);
NeilBrown5e570282011-07-28 11:39:25 +10003108 to_addr = r10_bio->devs[k].addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10003109 r10_bio->devs[0].devnum = d;
NeilBrown5e570282011-07-28 11:39:25 +10003110 r10_bio->devs[0].addr = from_addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10003111 r10_bio->devs[1].devnum = i;
NeilBrown5e570282011-07-28 11:39:25 +10003112 r10_bio->devs[1].addr = to_addr;
NeilBrownab9d47e2011-05-11 14:54:41 +10003113
NeilBrown24afd802011-12-23 10:17:55 +11003114 rdev = mirror->rdev;
3115 if (!test_bit(In_sync, &rdev->flags)) {
3116 bio = r10_bio->devs[1].bio;
3117 bio->bi_next = biolist;
3118 biolist = bio;
3119 bio->bi_private = r10_bio;
3120 bio->bi_end_io = end_sync_write;
3121 bio->bi_rw = WRITE;
3122 bio->bi_sector = to_addr
3123 + rdev->data_offset;
3124 bio->bi_bdev = rdev->bdev;
3125 atomic_inc(&r10_bio->remaining);
3126 } else
3127 r10_bio->devs[1].bio->bi_end_io = NULL;
3128
3129 /* and maybe write to replacement */
3130 bio = r10_bio->devs[1].repl_bio;
3131 if (bio)
3132 bio->bi_end_io = NULL;
3133 rdev = mirror->replacement;
3134 /* Note: if rdev != NULL, then bio
3135 * cannot be NULL as r10buf_pool_alloc will
3136 * have allocated it.
3137 * So the second test here is pointless.
3138 * But it keeps semantic-checkers happy, and
3139 * this comment keeps human reviewers
3140 * happy.
3141 */
3142 if (rdev == NULL || bio == NULL ||
3143 test_bit(Faulty, &rdev->flags))
3144 break;
3145 bio->bi_next = biolist;
3146 biolist = bio;
3147 bio->bi_private = r10_bio;
3148 bio->bi_end_io = end_sync_write;
3149 bio->bi_rw = WRITE;
3150 bio->bi_sector = to_addr + rdev->data_offset;
3151 bio->bi_bdev = rdev->bdev;
3152 atomic_inc(&r10_bio->remaining);
NeilBrownab9d47e2011-05-11 14:54:41 +10003153 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003155 if (j == conf->copies) {
NeilBrowne875ece2011-07-28 11:39:24 +10003156 /* Cannot recover, so abort the recovery or
3157 * record a bad block */
NeilBrownab9d47e2011-05-11 14:54:41 +10003158 put_buf(r10_bio);
3159 if (rb2)
3160 atomic_dec(&rb2->remaining);
3161 r10_bio = rb2;
NeilBrowne875ece2011-07-28 11:39:24 +10003162 if (any_working) {
3163 /* problem is that there are bad blocks
3164 * on other device(s)
3165 */
3166 int k;
3167 for (k = 0; k < conf->copies; k++)
3168 if (r10_bio->devs[k].devnum == i)
3169 break;
NeilBrown24afd802011-12-23 10:17:55 +11003170 if (!test_bit(In_sync,
3171 &mirror->rdev->flags)
3172 && !rdev_set_badblocks(
3173 mirror->rdev,
3174 r10_bio->devs[k].addr,
3175 max_sync, 0))
3176 any_working = 0;
3177 if (mirror->replacement &&
3178 !rdev_set_badblocks(
3179 mirror->replacement,
NeilBrowne875ece2011-07-28 11:39:24 +10003180 r10_bio->devs[k].addr,
3181 max_sync, 0))
3182 any_working = 0;
3183 }
3184 if (!any_working) {
3185 if (!test_and_set_bit(MD_RECOVERY_INTR,
3186 &mddev->recovery))
3187 printk(KERN_INFO "md/raid10:%s: insufficient "
3188 "working devices for recovery.\n",
3189 mdname(mddev));
NeilBrown24afd802011-12-23 10:17:55 +11003190 mirror->recovery_disabled
NeilBrowne875ece2011-07-28 11:39:24 +10003191 = mddev->recovery_disabled;
3192 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003193 break;
3194 }
3195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 if (biolist == NULL) {
3197 while (r10_bio) {
NeilBrown9f2c9d12011-10-11 16:48:43 +11003198 struct r10bio *rb2 = r10_bio;
3199 r10_bio = (struct r10bio*) rb2->master_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 rb2->master_bio = NULL;
3201 put_buf(rb2);
3202 }
3203 goto giveup;
3204 }
3205 } else {
3206 /* resync. Schedule a read for every block at this virt offset */
3207 int count = 0;
NeilBrown6cce3b22006-01-06 00:20:16 -08003208
NeilBrown78200d42009-02-25 13:18:47 +11003209 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
3210
NeilBrown6cce3b22006-01-06 00:20:16 -08003211 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
3212 &sync_blocks, mddev->degraded) &&
NeilBrownab9d47e2011-05-11 14:54:41 +10003213 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED,
3214 &mddev->recovery)) {
NeilBrown6cce3b22006-01-06 00:20:16 -08003215 /* We can skip this block */
3216 *skipped = 1;
3217 return sync_blocks + sectors_skipped;
3218 }
3219 if (sync_blocks < max_sync)
3220 max_sync = sync_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
3222
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 r10_bio->mddev = mddev;
3224 atomic_set(&r10_bio->remaining, 0);
NeilBrown6cce3b22006-01-06 00:20:16 -08003225 raise_barrier(conf, 0);
3226 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
3228 r10_bio->master_bio = NULL;
3229 r10_bio->sector = sector_nr;
3230 set_bit(R10BIO_IsSync, &r10_bio->state);
3231 raid10_find_phys(conf, r10_bio);
NeilBrown5cf00fc2012-05-21 09:28:20 +10003232 r10_bio->sectors = (sector_nr | chunk_mask) - sector_nr + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
NeilBrown5cf00fc2012-05-21 09:28:20 +10003234 for (i = 0; i < conf->copies; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 int d = r10_bio->devs[i].devnum;
NeilBrown40c356c2011-07-28 11:39:24 +10003236 sector_t first_bad, sector;
3237 int bad_sectors;
3238
NeilBrown9ad1aef2011-12-23 10:17:55 +11003239 if (r10_bio->devs[i].repl_bio)
3240 r10_bio->devs[i].repl_bio->bi_end_io = NULL;
3241
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 bio = r10_bio->devs[i].bio;
3243 bio->bi_end_io = NULL;
NeilBrownaf03b8e2007-06-16 10:16:06 -07003244 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 if (conf->mirrors[d].rdev == NULL ||
NeilBrownb2d444d2005-11-08 21:39:31 -08003246 test_bit(Faulty, &conf->mirrors[d].rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 continue;
NeilBrown40c356c2011-07-28 11:39:24 +10003248 sector = r10_bio->devs[i].addr;
3249 if (is_badblock(conf->mirrors[d].rdev,
3250 sector, max_sync,
3251 &first_bad, &bad_sectors)) {
3252 if (first_bad > sector)
3253 max_sync = first_bad - sector;
3254 else {
3255 bad_sectors -= (sector - first_bad);
3256 if (max_sync > bad_sectors)
Dan Carpenter91502f02012-10-11 14:20:58 +11003257 max_sync = bad_sectors;
NeilBrown40c356c2011-07-28 11:39:24 +10003258 continue;
3259 }
3260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
3262 atomic_inc(&r10_bio->remaining);
3263 bio->bi_next = biolist;
3264 biolist = bio;
3265 bio->bi_private = r10_bio;
3266 bio->bi_end_io = end_sync_read;
NeilBrown802ba062006-12-13 00:34:13 -08003267 bio->bi_rw = READ;
NeilBrown40c356c2011-07-28 11:39:24 +10003268 bio->bi_sector = sector +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 conf->mirrors[d].rdev->data_offset;
3270 bio->bi_bdev = conf->mirrors[d].rdev->bdev;
3271 count++;
NeilBrown9ad1aef2011-12-23 10:17:55 +11003272
3273 if (conf->mirrors[d].replacement == NULL ||
3274 test_bit(Faulty,
3275 &conf->mirrors[d].replacement->flags))
3276 continue;
3277
3278 /* Need to set up for writing to the replacement */
3279 bio = r10_bio->devs[i].repl_bio;
3280 clear_bit(BIO_UPTODATE, &bio->bi_flags);
3281
3282 sector = r10_bio->devs[i].addr;
3283 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
3284 bio->bi_next = biolist;
3285 biolist = bio;
3286 bio->bi_private = r10_bio;
3287 bio->bi_end_io = end_sync_write;
3288 bio->bi_rw = WRITE;
3289 bio->bi_sector = sector +
3290 conf->mirrors[d].replacement->data_offset;
3291 bio->bi_bdev = conf->mirrors[d].replacement->bdev;
3292 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 }
3294
3295 if (count < 2) {
3296 for (i=0; i<conf->copies; i++) {
3297 int d = r10_bio->devs[i].devnum;
3298 if (r10_bio->devs[i].bio->bi_end_io)
NeilBrownab9d47e2011-05-11 14:54:41 +10003299 rdev_dec_pending(conf->mirrors[d].rdev,
3300 mddev);
NeilBrown9ad1aef2011-12-23 10:17:55 +11003301 if (r10_bio->devs[i].repl_bio &&
3302 r10_bio->devs[i].repl_bio->bi_end_io)
3303 rdev_dec_pending(
3304 conf->mirrors[d].replacement,
3305 mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 }
3307 put_buf(r10_bio);
3308 biolist = NULL;
3309 goto giveup;
3310 }
3311 }
3312
3313 for (bio = biolist; bio ; bio=bio->bi_next) {
3314
3315 bio->bi_flags &= ~(BIO_POOL_MASK - 1);
3316 if (bio->bi_end_io)
3317 bio->bi_flags |= 1 << BIO_UPTODATE;
3318 bio->bi_vcnt = 0;
3319 bio->bi_idx = 0;
3320 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 bio->bi_size = 0;
3322 }
3323
3324 nr_sectors = 0;
NeilBrown6cce3b22006-01-06 00:20:16 -08003325 if (sector_nr + max_sync < max_sector)
3326 max_sector = sector_nr + max_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 do {
3328 struct page *page;
3329 int len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 if (sector_nr + (len>>9) > max_sector)
3331 len = (max_sector - sector_nr) << 9;
3332 if (len == 0)
3333 break;
3334 for (bio= biolist ; bio ; bio=bio->bi_next) {
NeilBrownab9d47e2011-05-11 14:54:41 +10003335 struct bio *bio2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
NeilBrownab9d47e2011-05-11 14:54:41 +10003337 if (bio_add_page(bio, page, len, 0))
3338 continue;
3339
3340 /* stop here */
3341 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
3342 for (bio2 = biolist;
3343 bio2 && bio2 != bio;
3344 bio2 = bio2->bi_next) {
3345 /* remove last page from this bio */
3346 bio2->bi_vcnt--;
3347 bio2->bi_size -= len;
3348 bio2->bi_flags &= ~(1<< BIO_SEG_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 }
NeilBrownab9d47e2011-05-11 14:54:41 +10003350 goto bio_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 }
3352 nr_sectors += len>>9;
3353 sector_nr += len>>9;
3354 } while (biolist->bi_vcnt < RESYNC_PAGES);
3355 bio_full:
3356 r10_bio->sectors = nr_sectors;
3357
3358 while (biolist) {
3359 bio = biolist;
3360 biolist = biolist->bi_next;
3361
3362 bio->bi_next = NULL;
3363 r10_bio = bio->bi_private;
3364 r10_bio->sectors = nr_sectors;
3365
3366 if (bio->bi_end_io == end_sync_read) {
3367 md_sync_acct(bio->bi_bdev, nr_sectors);
3368 generic_make_request(bio);
3369 }
3370 }
3371
NeilBrown57afd892005-06-21 17:17:13 -07003372 if (sectors_skipped)
3373 /* pretend they weren't skipped, it makes
3374 * no important difference in this case
3375 */
3376 md_done_sync(mddev, sectors_skipped, 1);
3377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 return sectors_skipped + nr_sectors;
3379 giveup:
3380 /* There is nowhere to write, so all non-sync
NeilBrowne875ece2011-07-28 11:39:24 +10003381 * drives must be failed or in resync, all drives
3382 * have a bad block, so try the next chunk...
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 */
NeilBrown09b40682009-02-25 13:18:47 +11003384 if (sector_nr + max_sync < max_sector)
3385 max_sector = sector_nr + max_sync;
3386
3387 sectors_skipped += (max_sector - sector_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 chunks_skipped ++;
3389 sector_nr = max_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 goto skipped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391}
3392
Dan Williams80c3a6c2009-03-17 18:10:40 -07003393static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11003394raid10_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07003395{
3396 sector_t size;
NeilBrowne879a872011-10-11 16:49:02 +11003397 struct r10conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003398
3399 if (!raid_disks)
NeilBrown3ea7daa2012-05-22 13:53:47 +10003400 raid_disks = min(conf->geo.raid_disks,
3401 conf->prev.raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07003402 if (!sectors)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003403 sectors = conf->dev_sectors;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003404
NeilBrown5cf00fc2012-05-21 09:28:20 +10003405 size = sectors >> conf->geo.chunk_shift;
3406 sector_div(size, conf->geo.far_copies);
Dan Williams80c3a6c2009-03-17 18:10:40 -07003407 size = size * raid_disks;
NeilBrown5cf00fc2012-05-21 09:28:20 +10003408 sector_div(size, conf->geo.near_copies);
Dan Williams80c3a6c2009-03-17 18:10:40 -07003409
NeilBrown5cf00fc2012-05-21 09:28:20 +10003410 return size << conf->geo.chunk_shift;
Dan Williams80c3a6c2009-03-17 18:10:40 -07003411}
3412
NeilBrown6508fdb2012-05-17 10:08:45 +10003413static void calc_sectors(struct r10conf *conf, sector_t size)
3414{
3415 /* Calculate the number of sectors-per-device that will
3416 * actually be used, and set conf->dev_sectors and
3417 * conf->stride
3418 */
3419
NeilBrown5cf00fc2012-05-21 09:28:20 +10003420 size = size >> conf->geo.chunk_shift;
3421 sector_div(size, conf->geo.far_copies);
3422 size = size * conf->geo.raid_disks;
3423 sector_div(size, conf->geo.near_copies);
NeilBrown6508fdb2012-05-17 10:08:45 +10003424 /* 'size' is now the number of chunks in the array */
3425 /* calculate "used chunks per device" */
3426 size = size * conf->copies;
3427
3428 /* We need to round up when dividing by raid_disks to
3429 * get the stride size.
3430 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10003431 size = DIV_ROUND_UP_SECTOR_T(size, conf->geo.raid_disks);
NeilBrown6508fdb2012-05-17 10:08:45 +10003432
NeilBrown5cf00fc2012-05-21 09:28:20 +10003433 conf->dev_sectors = size << conf->geo.chunk_shift;
NeilBrown6508fdb2012-05-17 10:08:45 +10003434
NeilBrown5cf00fc2012-05-21 09:28:20 +10003435 if (conf->geo.far_offset)
3436 conf->geo.stride = 1 << conf->geo.chunk_shift;
NeilBrown6508fdb2012-05-17 10:08:45 +10003437 else {
NeilBrown5cf00fc2012-05-21 09:28:20 +10003438 sector_div(size, conf->geo.far_copies);
3439 conf->geo.stride = size << conf->geo.chunk_shift;
NeilBrown6508fdb2012-05-17 10:08:45 +10003440 }
3441}
Trela, Maciejdab8b292010-03-08 16:02:45 +11003442
NeilBrowndeb200d2012-05-21 09:28:33 +10003443enum geo_type {geo_new, geo_old, geo_start};
3444static int setup_geo(struct geom *geo, struct mddev *mddev, enum geo_type new)
3445{
3446 int nc, fc, fo;
3447 int layout, chunk, disks;
3448 switch (new) {
3449 case geo_old:
3450 layout = mddev->layout;
3451 chunk = mddev->chunk_sectors;
3452 disks = mddev->raid_disks - mddev->delta_disks;
3453 break;
3454 case geo_new:
3455 layout = mddev->new_layout;
3456 chunk = mddev->new_chunk_sectors;
3457 disks = mddev->raid_disks;
3458 break;
3459 default: /* avoid 'may be unused' warnings */
3460 case geo_start: /* new when starting reshape - raid_disks not
3461 * updated yet. */
3462 layout = mddev->new_layout;
3463 chunk = mddev->new_chunk_sectors;
3464 disks = mddev->raid_disks + mddev->delta_disks;
3465 break;
3466 }
Jonathan Brassow475901a2013-02-21 13:28:10 +11003467 if (layout >> 18)
NeilBrowndeb200d2012-05-21 09:28:33 +10003468 return -1;
3469 if (chunk < (PAGE_SIZE >> 9) ||
3470 !is_power_of_2(chunk))
3471 return -2;
3472 nc = layout & 255;
3473 fc = (layout >> 8) & 255;
3474 fo = layout & (1<<16);
3475 geo->raid_disks = disks;
3476 geo->near_copies = nc;
3477 geo->far_copies = fc;
3478 geo->far_offset = fo;
Jonathan Brassow475901a2013-02-21 13:28:10 +11003479 geo->far_set_size = (layout & (1<<17)) ? disks / fc : disks;
NeilBrowndeb200d2012-05-21 09:28:33 +10003480 geo->chunk_mask = chunk - 1;
3481 geo->chunk_shift = ffz(~chunk);
3482 return nc*fc;
3483}
3484
NeilBrowne879a872011-10-11 16:49:02 +11003485static struct r10conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486{
NeilBrowne879a872011-10-11 16:49:02 +11003487 struct r10conf *conf = NULL;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003488 int err = -EINVAL;
NeilBrowndeb200d2012-05-21 09:28:33 +10003489 struct geom geo;
3490 int copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
NeilBrowndeb200d2012-05-21 09:28:33 +10003492 copies = setup_geo(&geo, mddev, geo_new);
3493
3494 if (copies == -2) {
NeilBrown128595e2010-05-03 14:47:14 +10003495 printk(KERN_ERR "md/raid10:%s: chunk size must be "
3496 "at least PAGE_SIZE(%ld) and be a power of 2.\n",
3497 mdname(mddev), PAGE_SIZE);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003498 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 }
NeilBrown2604b702006-01-06 00:20:36 -08003500
NeilBrowndeb200d2012-05-21 09:28:33 +10003501 if (copies < 2 || copies > mddev->raid_disks) {
NeilBrown128595e2010-05-03 14:47:14 +10003502 printk(KERN_ERR "md/raid10:%s: unsupported raid10 layout: 0x%8x\n",
Maciej Trelaf73ea872010-06-16 11:46:29 +01003503 mdname(mddev), mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 goto out;
3505 }
Trela, Maciejdab8b292010-03-08 16:02:45 +11003506
3507 err = -ENOMEM;
NeilBrowne879a872011-10-11 16:49:02 +11003508 conf = kzalloc(sizeof(struct r10conf), GFP_KERNEL);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003509 if (!conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 goto out;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003511
NeilBrown3ea7daa2012-05-22 13:53:47 +10003512 /* FIXME calc properly */
Jonathan Brassowdc280d92012-07-31 10:03:52 +10003513 conf->mirrors = kzalloc(sizeof(struct raid10_info)*(mddev->raid_disks +
NeilBrown3ea7daa2012-05-22 13:53:47 +10003514 max(0,mddev->delta_disks)),
Trela, Maciejdab8b292010-03-08 16:02:45 +11003515 GFP_KERNEL);
3516 if (!conf->mirrors)
3517 goto out;
NeilBrown4443ae12006-01-06 00:20:28 -08003518
3519 conf->tmppage = alloc_page(GFP_KERNEL);
3520 if (!conf->tmppage)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003521 goto out;
3522
NeilBrowndeb200d2012-05-21 09:28:33 +10003523 conf->geo = geo;
3524 conf->copies = copies;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003525 conf->r10bio_pool = mempool_create(NR_RAID10_BIOS, r10bio_pool_alloc,
3526 r10bio_pool_free, conf);
3527 if (!conf->r10bio_pool)
3528 goto out;
3529
NeilBrown6508fdb2012-05-17 10:08:45 +10003530 calc_sectors(conf, mddev->dev_sectors);
NeilBrown3ea7daa2012-05-22 13:53:47 +10003531 if (mddev->reshape_position == MaxSector) {
3532 conf->prev = conf->geo;
3533 conf->reshape_progress = MaxSector;
3534 } else {
3535 if (setup_geo(&conf->prev, mddev, geo_old) != conf->copies) {
3536 err = -EINVAL;
3537 goto out;
3538 }
3539 conf->reshape_progress = mddev->reshape_position;
3540 if (conf->prev.far_offset)
3541 conf->prev.stride = 1 << conf->prev.chunk_shift;
3542 else
3543 /* far_copies must be 1 */
3544 conf->prev.stride = conf->dev_sectors;
3545 }
Neil Browne7e72bf2008-05-14 16:05:54 -07003546 spin_lock_init(&conf->device_lock);
Trela, Maciejdab8b292010-03-08 16:02:45 +11003547 INIT_LIST_HEAD(&conf->retry_list);
3548
3549 spin_lock_init(&conf->resync_lock);
3550 init_waitqueue_head(&conf->wait_barrier);
3551
NeilBrown02326052012-07-03 15:56:52 +10003552 conf->thread = md_register_thread(raid10d, mddev, "raid10");
Trela, Maciejdab8b292010-03-08 16:02:45 +11003553 if (!conf->thread)
3554 goto out;
3555
Trela, Maciejdab8b292010-03-08 16:02:45 +11003556 conf->mddev = mddev;
3557 return conf;
3558
3559 out:
NeilBrown3ea7daa2012-05-22 13:53:47 +10003560 if (err == -ENOMEM)
3561 printk(KERN_ERR "md/raid10:%s: couldn't allocate memory.\n",
3562 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11003563 if (conf) {
3564 if (conf->r10bio_pool)
3565 mempool_destroy(conf->r10bio_pool);
3566 kfree(conf->mirrors);
3567 safe_put_page(conf->tmppage);
3568 kfree(conf);
3569 }
3570 return ERR_PTR(err);
3571}
3572
NeilBrownfd01b882011-10-11 16:47:53 +11003573static int run(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003574{
NeilBrowne879a872011-10-11 16:49:02 +11003575 struct r10conf *conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003576 int i, disk_idx, chunk_size;
Jonathan Brassowdc280d92012-07-31 10:03:52 +10003577 struct raid10_info *disk;
NeilBrown3cb03002011-10-11 16:45:26 +11003578 struct md_rdev *rdev;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003579 sector_t size;
NeilBrown3ea7daa2012-05-22 13:53:47 +10003580 sector_t min_offset_diff = 0;
3581 int first = 1;
Shaohua Li532a2a32012-10-11 13:30:52 +11003582 bool discard_supported = false;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003583
3584 if (mddev->private == NULL) {
3585 conf = setup_conf(mddev);
3586 if (IS_ERR(conf))
3587 return PTR_ERR(conf);
3588 mddev->private = conf;
3589 }
3590 conf = mddev->private;
3591 if (!conf)
3592 goto out;
3593
Trela, Maciejdab8b292010-03-08 16:02:45 +11003594 mddev->thread = conf->thread;
3595 conf->thread = NULL;
3596
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10003597 chunk_size = mddev->chunk_sectors << 9;
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003598 if (mddev->queue) {
Shaohua Li532a2a32012-10-11 13:30:52 +11003599 blk_queue_max_discard_sectors(mddev->queue,
3600 mddev->chunk_sectors);
Joe Lawrencec8dc9c62013-02-21 13:28:09 +11003601 blk_queue_max_write_same_sectors(mddev->queue,
3602 mddev->chunk_sectors);
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003603 blk_queue_io_min(mddev->queue, chunk_size);
3604 if (conf->geo.raid_disks % conf->geo.near_copies)
3605 blk_queue_io_opt(mddev->queue, chunk_size * conf->geo.raid_disks);
3606 else
3607 blk_queue_io_opt(mddev->queue, chunk_size *
3608 (conf->geo.raid_disks / conf->geo.near_copies));
3609 }
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10003610
NeilBrowndafb20f2012-03-19 12:46:39 +11003611 rdev_for_each(rdev, mddev) {
NeilBrown3ea7daa2012-05-22 13:53:47 +10003612 long long diff;
NeilBrownaba336b2012-05-31 15:39:11 +10003613 struct request_queue *q;
NeilBrown34b343c2011-07-28 11:31:47 +10003614
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 disk_idx = rdev->raid_disk;
NeilBrownf8c9e742012-05-21 09:28:33 +10003616 if (disk_idx < 0)
3617 continue;
3618 if (disk_idx >= conf->geo.raid_disks &&
3619 disk_idx >= conf->prev.raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 continue;
3621 disk = conf->mirrors + disk_idx;
3622
NeilBrown56a25592011-12-23 10:17:55 +11003623 if (test_bit(Replacement, &rdev->flags)) {
3624 if (disk->replacement)
3625 goto out_free_conf;
3626 disk->replacement = rdev;
3627 } else {
3628 if (disk->rdev)
3629 goto out_free_conf;
3630 disk->rdev = rdev;
3631 }
NeilBrownaba336b2012-05-31 15:39:11 +10003632 q = bdev_get_queue(rdev->bdev);
3633 if (q->merge_bvec_fn)
3634 mddev->merge_check_needed = 1;
NeilBrown3ea7daa2012-05-22 13:53:47 +10003635 diff = (rdev->new_data_offset - rdev->data_offset);
3636 if (!mddev->reshape_backwards)
3637 diff = -diff;
3638 if (diff < 0)
3639 diff = 0;
3640 if (first || diff < min_offset_diff)
3641 min_offset_diff = diff;
NeilBrown56a25592011-12-23 10:17:55 +11003642
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003643 if (mddev->gendisk)
3644 disk_stack_limits(mddev->gendisk, rdev->bdev,
3645 rdev->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
3647 disk->head_position = 0;
Shaohua Li532a2a32012-10-11 13:30:52 +11003648
3649 if (blk_queue_discard(bdev_get_queue(rdev->bdev)))
3650 discard_supported = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 }
NeilBrown3ea7daa2012-05-22 13:53:47 +10003652
Jonathan Brassowed30be02012-10-31 11:42:30 +11003653 if (mddev->queue) {
3654 if (discard_supported)
3655 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
3656 mddev->queue);
3657 else
3658 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
3659 mddev->queue);
3660 }
NeilBrown6d508242005-09-09 16:24:03 -07003661 /* need to check that every block has at least one working mirror */
NeilBrown700c7212011-07-27 11:00:36 +10003662 if (!enough(conf, -1)) {
NeilBrown128595e2010-05-03 14:47:14 +10003663 printk(KERN_ERR "md/raid10:%s: not enough operational mirrors.\n",
NeilBrown6d508242005-09-09 16:24:03 -07003664 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 goto out_free_conf;
3666 }
3667
NeilBrown3ea7daa2012-05-22 13:53:47 +10003668 if (conf->reshape_progress != MaxSector) {
3669 /* must ensure that shape change is supported */
3670 if (conf->geo.far_copies != 1 &&
3671 conf->geo.far_offset == 0)
3672 goto out_free_conf;
3673 if (conf->prev.far_copies != 1 &&
3674 conf->geo.far_offset == 0)
3675 goto out_free_conf;
3676 }
3677
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 mddev->degraded = 0;
NeilBrownf8c9e742012-05-21 09:28:33 +10003679 for (i = 0;
3680 i < conf->geo.raid_disks
3681 || i < conf->prev.raid_disks;
3682 i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683
3684 disk = conf->mirrors + i;
3685
NeilBrown56a25592011-12-23 10:17:55 +11003686 if (!disk->rdev && disk->replacement) {
3687 /* The replacement is all we have - use it */
3688 disk->rdev = disk->replacement;
3689 disk->replacement = NULL;
3690 clear_bit(Replacement, &disk->rdev->flags);
3691 }
3692
NeilBrown5fd6c1d2006-06-26 00:27:40 -07003693 if (!disk->rdev ||
NeilBrown2e333e82006-10-21 10:24:07 -07003694 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 disk->head_position = 0;
3696 mddev->degraded++;
Neil Brown8c2e8702008-06-28 08:30:52 +10003697 if (disk->rdev)
3698 conf->fullsync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 }
NeilBrownd890fa22011-10-26 11:54:39 +11003700 disk->recovery_disabled = mddev->recovery_disabled - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 }
3702
Andre Noll8c6ac862009-06-18 08:48:06 +10003703 if (mddev->recovery_cp != MaxSector)
NeilBrown128595e2010-05-03 14:47:14 +10003704 printk(KERN_NOTICE "md/raid10:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10003705 " -- starting background reconstruction\n",
3706 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 printk(KERN_INFO
NeilBrown128595e2010-05-03 14:47:14 +10003708 "md/raid10:%s: active with %d out of %d devices\n",
NeilBrown5cf00fc2012-05-21 09:28:20 +10003709 mdname(mddev), conf->geo.raid_disks - mddev->degraded,
3710 conf->geo.raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 /*
3712 * Ok, everything is just fine now
3713 */
Trela, Maciejdab8b292010-03-08 16:02:45 +11003714 mddev->dev_sectors = conf->dev_sectors;
3715 size = raid10_size(mddev, 0, 0);
3716 md_set_array_sectors(mddev, size);
3717 mddev->resync_max_sectors = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003719 if (mddev->queue) {
NeilBrown5cf00fc2012-05-21 09:28:20 +10003720 int stripe = conf->geo.raid_disks *
Andre Noll9d8f0362009-06-18 08:45:01 +10003721 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003722 mddev->queue->backing_dev_info.congested_fn = raid10_congested;
3723 mddev->queue->backing_dev_info.congested_data = mddev;
3724
3725 /* Calculate max read-ahead size.
3726 * We need to readahead at least twice a whole stripe....
3727 * maybe...
3728 */
NeilBrown5cf00fc2012-05-21 09:28:20 +10003729 stripe /= conf->geo.near_copies;
NeilBrown3ea7daa2012-05-22 13:53:47 +10003730 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
3731 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003732 blk_queue_merge_bvec(mddev->queue, raid10_mergeable_bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 }
3734
Martin K. Petersena91a2782011-03-17 11:11:05 +01003735
3736 if (md_integrity_register(mddev))
3737 goto out_free_conf;
3738
NeilBrown3ea7daa2012-05-22 13:53:47 +10003739 if (conf->reshape_progress != MaxSector) {
3740 unsigned long before_length, after_length;
3741
3742 before_length = ((1 << conf->prev.chunk_shift) *
3743 conf->prev.far_copies);
3744 after_length = ((1 << conf->geo.chunk_shift) *
3745 conf->geo.far_copies);
3746
3747 if (max(before_length, after_length) > min_offset_diff) {
3748 /* This cannot work */
3749 printk("md/raid10: offset difference not enough to continue reshape\n");
3750 goto out_free_conf;
3751 }
3752 conf->offset_diff = min_offset_diff;
3753
3754 conf->reshape_safe = conf->reshape_progress;
3755 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
3756 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
3757 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
3758 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
3759 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
3760 "reshape");
3761 }
3762
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 return 0;
3764
3765out_free_conf:
NeilBrown01f96c02011-09-21 15:30:20 +10003766 md_unregister_thread(&mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 if (conf->r10bio_pool)
3768 mempool_destroy(conf->r10bio_pool);
NeilBrown1345b1d2006-01-06 00:20:40 -08003769 safe_put_page(conf->tmppage);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07003770 kfree(conf->mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 kfree(conf);
3772 mddev->private = NULL;
3773out:
3774 return -EIO;
3775}
3776
NeilBrownfd01b882011-10-11 16:47:53 +11003777static int stop(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778{
NeilBrowne879a872011-10-11 16:49:02 +11003779 struct r10conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
NeilBrown409c57f2009-03-31 14:39:39 +11003781 raise_barrier(conf, 0);
3782 lower_barrier(conf);
3783
NeilBrown01f96c02011-09-21 15:30:20 +10003784 md_unregister_thread(&mddev->thread);
Jonathan Brassowcc4d1ef2012-07-31 10:03:53 +10003785 if (mddev->queue)
3786 /* the unplug fn references 'conf'*/
3787 blk_sync_queue(mddev->queue);
3788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 if (conf->r10bio_pool)
3790 mempool_destroy(conf->r10bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07003791 kfree(conf->mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 kfree(conf);
3793 mddev->private = NULL;
3794 return 0;
3795}
3796
NeilBrownfd01b882011-10-11 16:47:53 +11003797static void raid10_quiesce(struct mddev *mddev, int state)
NeilBrown6cce3b22006-01-06 00:20:16 -08003798{
NeilBrowne879a872011-10-11 16:49:02 +11003799 struct r10conf *conf = mddev->private;
NeilBrown6cce3b22006-01-06 00:20:16 -08003800
3801 switch(state) {
3802 case 1:
3803 raise_barrier(conf, 0);
3804 break;
3805 case 0:
3806 lower_barrier(conf);
3807 break;
3808 }
NeilBrown6cce3b22006-01-06 00:20:16 -08003809}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810
NeilBrown006a09a2012-03-19 12:46:40 +11003811static int raid10_resize(struct mddev *mddev, sector_t sectors)
3812{
3813 /* Resize of 'far' arrays is not supported.
3814 * For 'near' and 'offset' arrays we can set the
3815 * number of sectors used to be an appropriate multiple
3816 * of the chunk size.
3817 * For 'offset', this is far_copies*chunksize.
3818 * For 'near' the multiplier is the LCM of
3819 * near_copies and raid_disks.
3820 * So if far_copies > 1 && !far_offset, fail.
3821 * Else find LCM(raid_disks, near_copy)*far_copies and
3822 * multiply by chunk_size. Then round to this number.
3823 * This is mostly done by raid10_size()
3824 */
3825 struct r10conf *conf = mddev->private;
3826 sector_t oldsize, size;
3827
NeilBrownf8c9e742012-05-21 09:28:33 +10003828 if (mddev->reshape_position != MaxSector)
3829 return -EBUSY;
3830
NeilBrown5cf00fc2012-05-21 09:28:20 +10003831 if (conf->geo.far_copies > 1 && !conf->geo.far_offset)
NeilBrown006a09a2012-03-19 12:46:40 +11003832 return -EINVAL;
3833
3834 oldsize = raid10_size(mddev, 0, 0);
3835 size = raid10_size(mddev, sectors, 0);
NeilBrowna4a61252012-05-22 13:55:27 +10003836 if (mddev->external_size &&
3837 mddev->array_sectors > size)
NeilBrown006a09a2012-03-19 12:46:40 +11003838 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10003839 if (mddev->bitmap) {
3840 int ret = bitmap_resize(mddev->bitmap, size, 0, 0);
3841 if (ret)
3842 return ret;
3843 }
3844 md_set_array_sectors(mddev, size);
NeilBrown006a09a2012-03-19 12:46:40 +11003845 set_capacity(mddev->gendisk, mddev->array_sectors);
3846 revalidate_disk(mddev->gendisk);
3847 if (sectors > mddev->dev_sectors &&
3848 mddev->recovery_cp > oldsize) {
3849 mddev->recovery_cp = oldsize;
3850 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
3851 }
NeilBrown6508fdb2012-05-17 10:08:45 +10003852 calc_sectors(conf, sectors);
3853 mddev->dev_sectors = conf->dev_sectors;
NeilBrown006a09a2012-03-19 12:46:40 +11003854 mddev->resync_max_sectors = size;
3855 return 0;
3856}
3857
NeilBrownfd01b882011-10-11 16:47:53 +11003858static void *raid10_takeover_raid0(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003859{
NeilBrown3cb03002011-10-11 16:45:26 +11003860 struct md_rdev *rdev;
NeilBrowne879a872011-10-11 16:49:02 +11003861 struct r10conf *conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003862
3863 if (mddev->degraded > 0) {
NeilBrown128595e2010-05-03 14:47:14 +10003864 printk(KERN_ERR "md/raid10:%s: Error: degraded raid0!\n",
3865 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11003866 return ERR_PTR(-EINVAL);
3867 }
3868
Trela, Maciejdab8b292010-03-08 16:02:45 +11003869 /* Set new parameters */
3870 mddev->new_level = 10;
3871 /* new layout: far_copies = 1, near_copies = 2 */
3872 mddev->new_layout = (1<<8) + 2;
3873 mddev->new_chunk_sectors = mddev->chunk_sectors;
3874 mddev->delta_disks = mddev->raid_disks;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003875 mddev->raid_disks *= 2;
3876 /* make sure it will be not marked as dirty */
3877 mddev->recovery_cp = MaxSector;
3878
3879 conf = setup_conf(mddev);
Krzysztof Wojcik02214dc2011-02-04 14:18:26 +01003880 if (!IS_ERR(conf)) {
NeilBrowndafb20f2012-03-19 12:46:39 +11003881 rdev_for_each(rdev, mddev)
NeilBrowne93f68a2010-06-15 09:36:03 +01003882 if (rdev->raid_disk >= 0)
3883 rdev->new_raid_disk = rdev->raid_disk * 2;
Krzysztof Wojcik02214dc2011-02-04 14:18:26 +01003884 conf->barrier = 1;
3885 }
3886
Trela, Maciejdab8b292010-03-08 16:02:45 +11003887 return conf;
3888}
3889
NeilBrownfd01b882011-10-11 16:47:53 +11003890static void *raid10_takeover(struct mddev *mddev)
Trela, Maciejdab8b292010-03-08 16:02:45 +11003891{
NeilBrowne373ab12011-10-11 16:48:59 +11003892 struct r0conf *raid0_conf;
Trela, Maciejdab8b292010-03-08 16:02:45 +11003893
3894 /* raid10 can take over:
3895 * raid0 - providing it has only two drives
3896 */
3897 if (mddev->level == 0) {
3898 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11003899 raid0_conf = mddev->private;
3900 if (raid0_conf->nr_strip_zones > 1) {
NeilBrown128595e2010-05-03 14:47:14 +10003901 printk(KERN_ERR "md/raid10:%s: cannot takeover raid 0"
3902 " with more than one zone.\n",
3903 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11003904 return ERR_PTR(-EINVAL);
3905 }
3906 return raid10_takeover_raid0(mddev);
3907 }
3908 return ERR_PTR(-EINVAL);
3909}
3910
NeilBrown3ea7daa2012-05-22 13:53:47 +10003911static int raid10_check_reshape(struct mddev *mddev)
3912{
3913 /* Called when there is a request to change
3914 * - layout (to ->new_layout)
3915 * - chunk size (to ->new_chunk_sectors)
3916 * - raid_disks (by delta_disks)
3917 * or when trying to restart a reshape that was ongoing.
3918 *
3919 * We need to validate the request and possibly allocate
3920 * space if that might be an issue later.
3921 *
3922 * Currently we reject any reshape of a 'far' mode array,
3923 * allow chunk size to change if new is generally acceptable,
3924 * allow raid_disks to increase, and allow
3925 * a switch between 'near' mode and 'offset' mode.
3926 */
3927 struct r10conf *conf = mddev->private;
3928 struct geom geo;
3929
3930 if (conf->geo.far_copies != 1 && !conf->geo.far_offset)
3931 return -EINVAL;
3932
3933 if (setup_geo(&geo, mddev, geo_start) != conf->copies)
3934 /* mustn't change number of copies */
3935 return -EINVAL;
3936 if (geo.far_copies > 1 && !geo.far_offset)
3937 /* Cannot switch to 'far' mode */
3938 return -EINVAL;
3939
3940 if (mddev->array_sectors & geo.chunk_mask)
3941 /* not factor of array size */
3942 return -EINVAL;
3943
NeilBrown3ea7daa2012-05-22 13:53:47 +10003944 if (!enough(conf, -1))
3945 return -EINVAL;
3946
3947 kfree(conf->mirrors_new);
3948 conf->mirrors_new = NULL;
3949 if (mddev->delta_disks > 0) {
3950 /* allocate new 'mirrors' list */
3951 conf->mirrors_new = kzalloc(
Jonathan Brassowdc280d92012-07-31 10:03:52 +10003952 sizeof(struct raid10_info)
NeilBrown3ea7daa2012-05-22 13:53:47 +10003953 *(mddev->raid_disks +
3954 mddev->delta_disks),
3955 GFP_KERNEL);
3956 if (!conf->mirrors_new)
3957 return -ENOMEM;
3958 }
3959 return 0;
3960}
3961
3962/*
3963 * Need to check if array has failed when deciding whether to:
3964 * - start an array
3965 * - remove non-faulty devices
3966 * - add a spare
3967 * - allow a reshape
3968 * This determination is simple when no reshape is happening.
3969 * However if there is a reshape, we need to carefully check
3970 * both the before and after sections.
3971 * This is because some failed devices may only affect one
3972 * of the two sections, and some non-in_sync devices may
3973 * be insync in the section most affected by failed devices.
3974 */
3975static int calc_degraded(struct r10conf *conf)
3976{
3977 int degraded, degraded2;
3978 int i;
3979
3980 rcu_read_lock();
3981 degraded = 0;
3982 /* 'prev' section first */
3983 for (i = 0; i < conf->prev.raid_disks; i++) {
3984 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
3985 if (!rdev || test_bit(Faulty, &rdev->flags))
3986 degraded++;
3987 else if (!test_bit(In_sync, &rdev->flags))
3988 /* When we can reduce the number of devices in
3989 * an array, this might not contribute to
3990 * 'degraded'. It does now.
3991 */
3992 degraded++;
3993 }
3994 rcu_read_unlock();
3995 if (conf->geo.raid_disks == conf->prev.raid_disks)
3996 return degraded;
3997 rcu_read_lock();
3998 degraded2 = 0;
3999 for (i = 0; i < conf->geo.raid_disks; i++) {
4000 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
4001 if (!rdev || test_bit(Faulty, &rdev->flags))
4002 degraded2++;
4003 else if (!test_bit(In_sync, &rdev->flags)) {
4004 /* If reshape is increasing the number of devices,
4005 * this section has already been recovered, so
4006 * it doesn't contribute to degraded.
4007 * else it does.
4008 */
4009 if (conf->geo.raid_disks <= conf->prev.raid_disks)
4010 degraded2++;
4011 }
4012 }
4013 rcu_read_unlock();
4014 if (degraded2 > degraded)
4015 return degraded2;
4016 return degraded;
4017}
4018
4019static int raid10_start_reshape(struct mddev *mddev)
4020{
4021 /* A 'reshape' has been requested. This commits
4022 * the various 'new' fields and sets MD_RECOVER_RESHAPE
4023 * This also checks if there are enough spares and adds them
4024 * to the array.
4025 * We currently require enough spares to make the final
4026 * array non-degraded. We also require that the difference
4027 * between old and new data_offset - on each device - is
4028 * enough that we never risk over-writing.
4029 */
4030
4031 unsigned long before_length, after_length;
4032 sector_t min_offset_diff = 0;
4033 int first = 1;
4034 struct geom new;
4035 struct r10conf *conf = mddev->private;
4036 struct md_rdev *rdev;
4037 int spares = 0;
NeilBrownbb63a702012-05-22 13:55:28 +10004038 int ret;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004039
4040 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
4041 return -EBUSY;
4042
4043 if (setup_geo(&new, mddev, geo_start) != conf->copies)
4044 return -EINVAL;
4045
4046 before_length = ((1 << conf->prev.chunk_shift) *
4047 conf->prev.far_copies);
4048 after_length = ((1 << conf->geo.chunk_shift) *
4049 conf->geo.far_copies);
4050
4051 rdev_for_each(rdev, mddev) {
4052 if (!test_bit(In_sync, &rdev->flags)
4053 && !test_bit(Faulty, &rdev->flags))
4054 spares++;
4055 if (rdev->raid_disk >= 0) {
4056 long long diff = (rdev->new_data_offset
4057 - rdev->data_offset);
4058 if (!mddev->reshape_backwards)
4059 diff = -diff;
4060 if (diff < 0)
4061 diff = 0;
4062 if (first || diff < min_offset_diff)
4063 min_offset_diff = diff;
4064 }
4065 }
4066
4067 if (max(before_length, after_length) > min_offset_diff)
4068 return -EINVAL;
4069
4070 if (spares < mddev->delta_disks)
4071 return -EINVAL;
4072
4073 conf->offset_diff = min_offset_diff;
4074 spin_lock_irq(&conf->device_lock);
4075 if (conf->mirrors_new) {
4076 memcpy(conf->mirrors_new, conf->mirrors,
Jonathan Brassowdc280d92012-07-31 10:03:52 +10004077 sizeof(struct raid10_info)*conf->prev.raid_disks);
NeilBrown3ea7daa2012-05-22 13:53:47 +10004078 smp_mb();
4079 kfree(conf->mirrors_old); /* FIXME and elsewhere */
4080 conf->mirrors_old = conf->mirrors;
4081 conf->mirrors = conf->mirrors_new;
4082 conf->mirrors_new = NULL;
4083 }
4084 setup_geo(&conf->geo, mddev, geo_start);
4085 smp_mb();
4086 if (mddev->reshape_backwards) {
4087 sector_t size = raid10_size(mddev, 0, 0);
4088 if (size < mddev->array_sectors) {
4089 spin_unlock_irq(&conf->device_lock);
4090 printk(KERN_ERR "md/raid10:%s: array size must be reduce before number of disks\n",
4091 mdname(mddev));
4092 return -EINVAL;
4093 }
4094 mddev->resync_max_sectors = size;
4095 conf->reshape_progress = size;
4096 } else
4097 conf->reshape_progress = 0;
4098 spin_unlock_irq(&conf->device_lock);
4099
NeilBrownbb63a702012-05-22 13:55:28 +10004100 if (mddev->delta_disks && mddev->bitmap) {
4101 ret = bitmap_resize(mddev->bitmap,
4102 raid10_size(mddev, 0,
4103 conf->geo.raid_disks),
4104 0, 0);
4105 if (ret)
4106 goto abort;
4107 }
NeilBrown3ea7daa2012-05-22 13:53:47 +10004108 if (mddev->delta_disks > 0) {
4109 rdev_for_each(rdev, mddev)
4110 if (rdev->raid_disk < 0 &&
4111 !test_bit(Faulty, &rdev->flags)) {
4112 if (raid10_add_disk(mddev, rdev) == 0) {
4113 if (rdev->raid_disk >=
4114 conf->prev.raid_disks)
4115 set_bit(In_sync, &rdev->flags);
4116 else
4117 rdev->recovery_offset = 0;
4118
4119 if (sysfs_link_rdev(mddev, rdev))
4120 /* Failure here is OK */;
4121 }
4122 } else if (rdev->raid_disk >= conf->prev.raid_disks
4123 && !test_bit(Faulty, &rdev->flags)) {
4124 /* This is a spare that was manually added */
4125 set_bit(In_sync, &rdev->flags);
4126 }
4127 }
4128 /* When a reshape changes the number of devices,
4129 * ->degraded is measured against the larger of the
4130 * pre and post numbers.
4131 */
4132 spin_lock_irq(&conf->device_lock);
4133 mddev->degraded = calc_degraded(conf);
4134 spin_unlock_irq(&conf->device_lock);
4135 mddev->raid_disks = conf->geo.raid_disks;
4136 mddev->reshape_position = conf->reshape_progress;
4137 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4138
4139 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
4140 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
4141 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
4142 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
4143
4144 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
4145 "reshape");
4146 if (!mddev->sync_thread) {
NeilBrownbb63a702012-05-22 13:55:28 +10004147 ret = -EAGAIN;
4148 goto abort;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004149 }
4150 conf->reshape_checkpoint = jiffies;
4151 md_wakeup_thread(mddev->sync_thread);
4152 md_new_event(mddev);
4153 return 0;
NeilBrownbb63a702012-05-22 13:55:28 +10004154
4155abort:
4156 mddev->recovery = 0;
4157 spin_lock_irq(&conf->device_lock);
4158 conf->geo = conf->prev;
4159 mddev->raid_disks = conf->geo.raid_disks;
4160 rdev_for_each(rdev, mddev)
4161 rdev->new_data_offset = rdev->data_offset;
4162 smp_wmb();
4163 conf->reshape_progress = MaxSector;
4164 mddev->reshape_position = MaxSector;
4165 spin_unlock_irq(&conf->device_lock);
4166 return ret;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004167}
4168
4169/* Calculate the last device-address that could contain
4170 * any block from the chunk that includes the array-address 's'
4171 * and report the next address.
4172 * i.e. the address returned will be chunk-aligned and after
4173 * any data that is in the chunk containing 's'.
4174 */
4175static sector_t last_dev_address(sector_t s, struct geom *geo)
4176{
4177 s = (s | geo->chunk_mask) + 1;
4178 s >>= geo->chunk_shift;
4179 s *= geo->near_copies;
4180 s = DIV_ROUND_UP_SECTOR_T(s, geo->raid_disks);
4181 s *= geo->far_copies;
4182 s <<= geo->chunk_shift;
4183 return s;
4184}
4185
4186/* Calculate the first device-address that could contain
4187 * any block from the chunk that includes the array-address 's'.
4188 * This too will be the start of a chunk
4189 */
4190static sector_t first_dev_address(sector_t s, struct geom *geo)
4191{
4192 s >>= geo->chunk_shift;
4193 s *= geo->near_copies;
4194 sector_div(s, geo->raid_disks);
4195 s *= geo->far_copies;
4196 s <<= geo->chunk_shift;
4197 return s;
4198}
4199
4200static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr,
4201 int *skipped)
4202{
4203 /* We simply copy at most one chunk (smallest of old and new)
4204 * at a time, possibly less if that exceeds RESYNC_PAGES,
4205 * or we hit a bad block or something.
4206 * This might mean we pause for normal IO in the middle of
4207 * a chunk, but that is not a problem was mddev->reshape_position
4208 * can record any location.
4209 *
4210 * If we will want to write to a location that isn't
4211 * yet recorded as 'safe' (i.e. in metadata on disk) then
4212 * we need to flush all reshape requests and update the metadata.
4213 *
4214 * When reshaping forwards (e.g. to more devices), we interpret
4215 * 'safe' as the earliest block which might not have been copied
4216 * down yet. We divide this by previous stripe size and multiply
4217 * by previous stripe length to get lowest device offset that we
4218 * cannot write to yet.
4219 * We interpret 'sector_nr' as an address that we want to write to.
4220 * From this we use last_device_address() to find where we might
4221 * write to, and first_device_address on the 'safe' position.
4222 * If this 'next' write position is after the 'safe' position,
4223 * we must update the metadata to increase the 'safe' position.
4224 *
4225 * When reshaping backwards, we round in the opposite direction
4226 * and perform the reverse test: next write position must not be
4227 * less than current safe position.
4228 *
4229 * In all this the minimum difference in data offsets
4230 * (conf->offset_diff - always positive) allows a bit of slack,
4231 * so next can be after 'safe', but not by more than offset_disk
4232 *
4233 * We need to prepare all the bios here before we start any IO
4234 * to ensure the size we choose is acceptable to all devices.
4235 * The means one for each copy for write-out and an extra one for
4236 * read-in.
4237 * We store the read-in bio in ->master_bio and the others in
4238 * ->devs[x].bio and ->devs[x].repl_bio.
4239 */
4240 struct r10conf *conf = mddev->private;
4241 struct r10bio *r10_bio;
4242 sector_t next, safe, last;
4243 int max_sectors;
4244 int nr_sectors;
4245 int s;
4246 struct md_rdev *rdev;
4247 int need_flush = 0;
4248 struct bio *blist;
4249 struct bio *bio, *read_bio;
4250 int sectors_done = 0;
4251
4252 if (sector_nr == 0) {
4253 /* If restarting in the middle, skip the initial sectors */
4254 if (mddev->reshape_backwards &&
4255 conf->reshape_progress < raid10_size(mddev, 0, 0)) {
4256 sector_nr = (raid10_size(mddev, 0, 0)
4257 - conf->reshape_progress);
4258 } else if (!mddev->reshape_backwards &&
4259 conf->reshape_progress > 0)
4260 sector_nr = conf->reshape_progress;
4261 if (sector_nr) {
4262 mddev->curr_resync_completed = sector_nr;
4263 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
4264 *skipped = 1;
4265 return sector_nr;
4266 }
4267 }
4268
4269 /* We don't use sector_nr to track where we are up to
4270 * as that doesn't work well for ->reshape_backwards.
4271 * So just use ->reshape_progress.
4272 */
4273 if (mddev->reshape_backwards) {
4274 /* 'next' is the earliest device address that we might
4275 * write to for this chunk in the new layout
4276 */
4277 next = first_dev_address(conf->reshape_progress - 1,
4278 &conf->geo);
4279
4280 /* 'safe' is the last device address that we might read from
4281 * in the old layout after a restart
4282 */
4283 safe = last_dev_address(conf->reshape_safe - 1,
4284 &conf->prev);
4285
4286 if (next + conf->offset_diff < safe)
4287 need_flush = 1;
4288
4289 last = conf->reshape_progress - 1;
4290 sector_nr = last & ~(sector_t)(conf->geo.chunk_mask
4291 & conf->prev.chunk_mask);
4292 if (sector_nr + RESYNC_BLOCK_SIZE/512 < last)
4293 sector_nr = last + 1 - RESYNC_BLOCK_SIZE/512;
4294 } else {
4295 /* 'next' is after the last device address that we
4296 * might write to for this chunk in the new layout
4297 */
4298 next = last_dev_address(conf->reshape_progress, &conf->geo);
4299
4300 /* 'safe' is the earliest device address that we might
4301 * read from in the old layout after a restart
4302 */
4303 safe = first_dev_address(conf->reshape_safe, &conf->prev);
4304
4305 /* Need to update metadata if 'next' might be beyond 'safe'
4306 * as that would possibly corrupt data
4307 */
4308 if (next > safe + conf->offset_diff)
4309 need_flush = 1;
4310
4311 sector_nr = conf->reshape_progress;
4312 last = sector_nr | (conf->geo.chunk_mask
4313 & conf->prev.chunk_mask);
4314
4315 if (sector_nr + RESYNC_BLOCK_SIZE/512 <= last)
4316 last = sector_nr + RESYNC_BLOCK_SIZE/512 - 1;
4317 }
4318
4319 if (need_flush ||
4320 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
4321 /* Need to update reshape_position in metadata */
4322 wait_barrier(conf);
4323 mddev->reshape_position = conf->reshape_progress;
4324 if (mddev->reshape_backwards)
4325 mddev->curr_resync_completed = raid10_size(mddev, 0, 0)
4326 - conf->reshape_progress;
4327 else
4328 mddev->curr_resync_completed = conf->reshape_progress;
4329 conf->reshape_checkpoint = jiffies;
4330 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4331 md_wakeup_thread(mddev->thread);
4332 wait_event(mddev->sb_wait, mddev->flags == 0 ||
4333 kthread_should_stop());
4334 conf->reshape_safe = mddev->reshape_position;
4335 allow_barrier(conf);
4336 }
4337
4338read_more:
4339 /* Now schedule reads for blocks from sector_nr to last */
4340 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
4341 raise_barrier(conf, sectors_done != 0);
4342 atomic_set(&r10_bio->remaining, 0);
4343 r10_bio->mddev = mddev;
4344 r10_bio->sector = sector_nr;
4345 set_bit(R10BIO_IsReshape, &r10_bio->state);
4346 r10_bio->sectors = last - sector_nr + 1;
4347 rdev = read_balance(conf, r10_bio, &max_sectors);
4348 BUG_ON(!test_bit(R10BIO_Previous, &r10_bio->state));
4349
4350 if (!rdev) {
4351 /* Cannot read from here, so need to record bad blocks
4352 * on all the target devices.
4353 */
4354 // FIXME
4355 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
4356 return sectors_done;
4357 }
4358
4359 read_bio = bio_alloc_mddev(GFP_KERNEL, RESYNC_PAGES, mddev);
4360
4361 read_bio->bi_bdev = rdev->bdev;
4362 read_bio->bi_sector = (r10_bio->devs[r10_bio->read_slot].addr
4363 + rdev->data_offset);
4364 read_bio->bi_private = r10_bio;
4365 read_bio->bi_end_io = end_sync_read;
4366 read_bio->bi_rw = READ;
4367 read_bio->bi_flags &= ~(BIO_POOL_MASK - 1);
4368 read_bio->bi_flags |= 1 << BIO_UPTODATE;
4369 read_bio->bi_vcnt = 0;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004370 read_bio->bi_size = 0;
4371 r10_bio->master_bio = read_bio;
4372 r10_bio->read_slot = r10_bio->devs[r10_bio->read_slot].devnum;
4373
4374 /* Now find the locations in the new layout */
4375 __raid10_find_phys(&conf->geo, r10_bio);
4376
4377 blist = read_bio;
4378 read_bio->bi_next = NULL;
4379
4380 for (s = 0; s < conf->copies*2; s++) {
4381 struct bio *b;
4382 int d = r10_bio->devs[s/2].devnum;
4383 struct md_rdev *rdev2;
4384 if (s&1) {
4385 rdev2 = conf->mirrors[d].replacement;
4386 b = r10_bio->devs[s/2].repl_bio;
4387 } else {
4388 rdev2 = conf->mirrors[d].rdev;
4389 b = r10_bio->devs[s/2].bio;
4390 }
4391 if (!rdev2 || test_bit(Faulty, &rdev2->flags))
4392 continue;
4393 b->bi_bdev = rdev2->bdev;
4394 b->bi_sector = r10_bio->devs[s/2].addr + rdev2->new_data_offset;
4395 b->bi_private = r10_bio;
4396 b->bi_end_io = end_reshape_write;
4397 b->bi_rw = WRITE;
4398 b->bi_flags &= ~(BIO_POOL_MASK - 1);
4399 b->bi_flags |= 1 << BIO_UPTODATE;
4400 b->bi_next = blist;
4401 b->bi_vcnt = 0;
4402 b->bi_idx = 0;
4403 b->bi_size = 0;
4404 blist = b;
4405 }
4406
4407 /* Now add as many pages as possible to all of these bios. */
4408
4409 nr_sectors = 0;
4410 for (s = 0 ; s < max_sectors; s += PAGE_SIZE >> 9) {
4411 struct page *page = r10_bio->devs[0].bio->bi_io_vec[s/(PAGE_SIZE>>9)].bv_page;
4412 int len = (max_sectors - s) << 9;
4413 if (len > PAGE_SIZE)
4414 len = PAGE_SIZE;
4415 for (bio = blist; bio ; bio = bio->bi_next) {
4416 struct bio *bio2;
4417 if (bio_add_page(bio, page, len, 0))
4418 continue;
4419
4420 /* Didn't fit, must stop */
4421 for (bio2 = blist;
4422 bio2 && bio2 != bio;
4423 bio2 = bio2->bi_next) {
4424 /* Remove last page from this bio */
4425 bio2->bi_vcnt--;
4426 bio2->bi_size -= len;
4427 bio2->bi_flags &= ~(1<<BIO_SEG_VALID);
4428 }
4429 goto bio_full;
4430 }
4431 sector_nr += len >> 9;
4432 nr_sectors += len >> 9;
4433 }
4434bio_full:
4435 r10_bio->sectors = nr_sectors;
4436
4437 /* Now submit the read */
4438 md_sync_acct(read_bio->bi_bdev, r10_bio->sectors);
4439 atomic_inc(&r10_bio->remaining);
4440 read_bio->bi_next = NULL;
4441 generic_make_request(read_bio);
4442 sector_nr += nr_sectors;
4443 sectors_done += nr_sectors;
4444 if (sector_nr <= last)
4445 goto read_more;
4446
4447 /* Now that we have done the whole section we can
4448 * update reshape_progress
4449 */
4450 if (mddev->reshape_backwards)
4451 conf->reshape_progress -= sectors_done;
4452 else
4453 conf->reshape_progress += sectors_done;
4454
4455 return sectors_done;
4456}
4457
4458static void end_reshape_request(struct r10bio *r10_bio);
4459static int handle_reshape_read_error(struct mddev *mddev,
4460 struct r10bio *r10_bio);
4461static void reshape_request_write(struct mddev *mddev, struct r10bio *r10_bio)
4462{
4463 /* Reshape read completed. Hopefully we have a block
4464 * to write out.
4465 * If we got a read error then we do sync 1-page reads from
4466 * elsewhere until we find the data - or give up.
4467 */
4468 struct r10conf *conf = mddev->private;
4469 int s;
4470
4471 if (!test_bit(R10BIO_Uptodate, &r10_bio->state))
4472 if (handle_reshape_read_error(mddev, r10_bio) < 0) {
4473 /* Reshape has been aborted */
4474 md_done_sync(mddev, r10_bio->sectors, 0);
4475 return;
4476 }
4477
4478 /* We definitely have the data in the pages, schedule the
4479 * writes.
4480 */
4481 atomic_set(&r10_bio->remaining, 1);
4482 for (s = 0; s < conf->copies*2; s++) {
4483 struct bio *b;
4484 int d = r10_bio->devs[s/2].devnum;
4485 struct md_rdev *rdev;
4486 if (s&1) {
4487 rdev = conf->mirrors[d].replacement;
4488 b = r10_bio->devs[s/2].repl_bio;
4489 } else {
4490 rdev = conf->mirrors[d].rdev;
4491 b = r10_bio->devs[s/2].bio;
4492 }
4493 if (!rdev || test_bit(Faulty, &rdev->flags))
4494 continue;
4495 atomic_inc(&rdev->nr_pending);
4496 md_sync_acct(b->bi_bdev, r10_bio->sectors);
4497 atomic_inc(&r10_bio->remaining);
4498 b->bi_next = NULL;
4499 generic_make_request(b);
4500 }
4501 end_reshape_request(r10_bio);
4502}
4503
4504static void end_reshape(struct r10conf *conf)
4505{
4506 if (test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery))
4507 return;
4508
4509 spin_lock_irq(&conf->device_lock);
4510 conf->prev = conf->geo;
4511 md_finish_reshape(conf->mddev);
4512 smp_wmb();
4513 conf->reshape_progress = MaxSector;
4514 spin_unlock_irq(&conf->device_lock);
4515
4516 /* read-ahead size must cover two whole stripes, which is
4517 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
4518 */
4519 if (conf->mddev->queue) {
4520 int stripe = conf->geo.raid_disks *
4521 ((conf->mddev->chunk_sectors << 9) / PAGE_SIZE);
4522 stripe /= conf->geo.near_copies;
4523 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
4524 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
4525 }
4526 conf->fullsync = 0;
4527}
4528
4529
4530static int handle_reshape_read_error(struct mddev *mddev,
4531 struct r10bio *r10_bio)
4532{
4533 /* Use sync reads to get the blocks from somewhere else */
4534 int sectors = r10_bio->sectors;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004535 struct r10conf *conf = mddev->private;
NeilBrowne0ee7782012-08-18 09:51:42 +10004536 struct {
4537 struct r10bio r10_bio;
4538 struct r10dev devs[conf->copies];
4539 } on_stack;
4540 struct r10bio *r10b = &on_stack.r10_bio;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004541 int slot = 0;
4542 int idx = 0;
4543 struct bio_vec *bvec = r10_bio->master_bio->bi_io_vec;
4544
NeilBrowne0ee7782012-08-18 09:51:42 +10004545 r10b->sector = r10_bio->sector;
4546 __raid10_find_phys(&conf->prev, r10b);
NeilBrown3ea7daa2012-05-22 13:53:47 +10004547
4548 while (sectors) {
4549 int s = sectors;
4550 int success = 0;
4551 int first_slot = slot;
4552
4553 if (s > (PAGE_SIZE >> 9))
4554 s = PAGE_SIZE >> 9;
4555
4556 while (!success) {
NeilBrowne0ee7782012-08-18 09:51:42 +10004557 int d = r10b->devs[slot].devnum;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004558 struct md_rdev *rdev = conf->mirrors[d].rdev;
4559 sector_t addr;
4560 if (rdev == NULL ||
4561 test_bit(Faulty, &rdev->flags) ||
4562 !test_bit(In_sync, &rdev->flags))
4563 goto failed;
4564
NeilBrowne0ee7782012-08-18 09:51:42 +10004565 addr = r10b->devs[slot].addr + idx * PAGE_SIZE;
NeilBrown3ea7daa2012-05-22 13:53:47 +10004566 success = sync_page_io(rdev,
4567 addr,
4568 s << 9,
4569 bvec[idx].bv_page,
4570 READ, false);
4571 if (success)
4572 break;
4573 failed:
4574 slot++;
4575 if (slot >= conf->copies)
4576 slot = 0;
4577 if (slot == first_slot)
4578 break;
4579 }
4580 if (!success) {
4581 /* couldn't read this block, must give up */
4582 set_bit(MD_RECOVERY_INTR,
4583 &mddev->recovery);
4584 return -EIO;
4585 }
4586 sectors -= s;
4587 idx++;
4588 }
4589 return 0;
4590}
4591
4592static void end_reshape_write(struct bio *bio, int error)
4593{
4594 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
4595 struct r10bio *r10_bio = bio->bi_private;
4596 struct mddev *mddev = r10_bio->mddev;
4597 struct r10conf *conf = mddev->private;
4598 int d;
4599 int slot;
4600 int repl;
4601 struct md_rdev *rdev = NULL;
4602
4603 d = find_bio_disk(conf, r10_bio, bio, &slot, &repl);
4604 if (repl)
4605 rdev = conf->mirrors[d].replacement;
4606 if (!rdev) {
4607 smp_mb();
4608 rdev = conf->mirrors[d].rdev;
4609 }
4610
4611 if (!uptodate) {
4612 /* FIXME should record badblock */
4613 md_error(mddev, rdev);
4614 }
4615
4616 rdev_dec_pending(rdev, mddev);
4617 end_reshape_request(r10_bio);
4618}
4619
4620static void end_reshape_request(struct r10bio *r10_bio)
4621{
4622 if (!atomic_dec_and_test(&r10_bio->remaining))
4623 return;
4624 md_done_sync(r10_bio->mddev, r10_bio->sectors, 1);
4625 bio_put(r10_bio->master_bio);
4626 put_buf(r10_bio);
4627}
4628
4629static void raid10_finish_reshape(struct mddev *mddev)
4630{
4631 struct r10conf *conf = mddev->private;
4632
4633 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
4634 return;
4635
4636 if (mddev->delta_disks > 0) {
4637 sector_t size = raid10_size(mddev, 0, 0);
4638 md_set_array_sectors(mddev, size);
4639 if (mddev->recovery_cp > mddev->resync_max_sectors) {
4640 mddev->recovery_cp = mddev->resync_max_sectors;
4641 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
4642 }
4643 mddev->resync_max_sectors = size;
4644 set_capacity(mddev->gendisk, mddev->array_sectors);
4645 revalidate_disk(mddev->gendisk);
NeilBrown63aced62012-05-22 13:55:33 +10004646 } else {
4647 int d;
4648 for (d = conf->geo.raid_disks ;
4649 d < conf->geo.raid_disks - mddev->delta_disks;
4650 d++) {
4651 struct md_rdev *rdev = conf->mirrors[d].rdev;
4652 if (rdev)
4653 clear_bit(In_sync, &rdev->flags);
4654 rdev = conf->mirrors[d].replacement;
4655 if (rdev)
4656 clear_bit(In_sync, &rdev->flags);
4657 }
NeilBrown3ea7daa2012-05-22 13:53:47 +10004658 }
4659 mddev->layout = mddev->new_layout;
4660 mddev->chunk_sectors = 1 << conf->geo.chunk_shift;
4661 mddev->reshape_position = MaxSector;
4662 mddev->delta_disks = 0;
4663 mddev->reshape_backwards = 0;
4664}
4665
NeilBrown84fc4b52011-10-11 16:49:58 +11004666static struct md_personality raid10_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667{
4668 .name = "raid10",
NeilBrown2604b702006-01-06 00:20:36 -08004669 .level = 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 .owner = THIS_MODULE,
4671 .make_request = make_request,
4672 .run = run,
4673 .stop = stop,
4674 .status = status,
4675 .error_handler = error,
4676 .hot_add_disk = raid10_add_disk,
4677 .hot_remove_disk= raid10_remove_disk,
4678 .spare_active = raid10_spare_active,
4679 .sync_request = sync_request,
NeilBrown6cce3b22006-01-06 00:20:16 -08004680 .quiesce = raid10_quiesce,
Dan Williams80c3a6c2009-03-17 18:10:40 -07004681 .size = raid10_size,
NeilBrown006a09a2012-03-19 12:46:40 +11004682 .resize = raid10_resize,
Trela, Maciejdab8b292010-03-08 16:02:45 +11004683 .takeover = raid10_takeover,
NeilBrown3ea7daa2012-05-22 13:53:47 +10004684 .check_reshape = raid10_check_reshape,
4685 .start_reshape = raid10_start_reshape,
4686 .finish_reshape = raid10_finish_reshape,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687};
4688
4689static int __init raid_init(void)
4690{
NeilBrown2604b702006-01-06 00:20:36 -08004691 return register_md_personality(&raid10_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692}
4693
4694static void raid_exit(void)
4695{
NeilBrown2604b702006-01-06 00:20:36 -08004696 unregister_md_personality(&raid10_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697}
4698
4699module_init(raid_init);
4700module_exit(raid_exit);
4701MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11004702MODULE_DESCRIPTION("RAID10 (striped mirror) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703MODULE_ALIAS("md-personality-9"); /* RAID10 */
NeilBrownd9d166c2006-01-06 00:20:51 -08004704MODULE_ALIAS("md-raid10");
NeilBrown2604b702006-01-06 00:20:36 -08004705MODULE_ALIAS("md-level-10");
NeilBrown34db0cd2011-10-11 16:50:01 +11004706
4707module_param(max_queued_requests, int, S_IRUGO|S_IWUSR);