blob: 872bf948f33a5e442a2ed7e2f575ec4cba1ce4cb [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>
NeilBrownbff61972009-03-31 14:33:13 +110024#include <linux/seq_file.h>
Christian Dietrich8bda4702011-07-27 11:00:36 +100025#include <linux/ratelimit.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110026#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110027#include "raid10.h"
Trela, Maciejdab8b292010-03-08 16:02:45 +110028#include "raid0.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110029#include "bitmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/*
32 * RAID10 provides a combination of RAID0 and RAID1 functionality.
33 * The layout of data is defined by
34 * chunk_size
35 * raid_disks
36 * near_copies (stored in low byte of layout)
37 * far_copies (stored in second byte of layout)
NeilBrownc93983b2006-06-26 00:27:41 -070038 * far_offset (stored in bit 16 of layout )
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 *
40 * The data to be stored is divided into chunks using chunksize.
41 * Each device is divided into far_copies sections.
42 * In each section, chunks are laid out in a style similar to raid0, but
43 * near_copies copies of each chunk is stored (each on a different drive).
44 * The starting device for each section is offset near_copies from the starting
45 * device of the previous section.
NeilBrownc93983b2006-06-26 00:27:41 -070046 * Thus they are (near_copies*far_copies) of each chunk, and each is on a different
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * drive.
48 * near_copies and far_copies must be at least one, and their product is at most
49 * raid_disks.
NeilBrownc93983b2006-06-26 00:27:41 -070050 *
51 * If far_offset is true, then the far_copies are handled a bit differently.
52 * The copies are still in different stripes, but instead of be very far apart
53 * on disk, there are adjacent stripes.
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 */
55
56/*
57 * Number of guaranteed r10bios in case of extreme VM load:
58 */
59#define NR_RAID10_BIOS 256
60
NeilBrown0a27ec92006-01-06 00:20:13 -080061static void allow_barrier(conf_t *conf);
62static void lower_barrier(conf_t *conf);
63
Al Virodd0fc662005-10-07 07:46:04 +010064static void * r10bio_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 conf_t *conf = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 int size = offsetof(struct r10bio_s, devs[conf->copies]);
68
69 /* allocate a r10bio with room for raid_disks entries in the bios array */
Jens Axboe7eaceac2011-03-10 08:52:07 +010070 return kzalloc(size, gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
73static void r10bio_pool_free(void *r10_bio, void *data)
74{
75 kfree(r10_bio);
76}
77
NeilBrown0310fa22008-08-05 15:54:14 +100078/* Maximum size of each resync request */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define RESYNC_BLOCK_SIZE (64*1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#define RESYNC_PAGES ((RESYNC_BLOCK_SIZE + PAGE_SIZE-1) / PAGE_SIZE)
NeilBrown0310fa22008-08-05 15:54:14 +100081/* amount of memory to reserve for resync requests */
82#define RESYNC_WINDOW (1024*1024)
83/* maximum number of concurrent requests, memory permitting */
84#define RESYNC_DEPTH (32*1024*1024/RESYNC_BLOCK_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86/*
87 * When performing a resync, we need to read and compare, so
88 * we need as many pages are there are copies.
89 * When performing a recovery, we need 2 bios, one for read,
90 * one for write (we recover only one drive per r10buf)
91 *
92 */
Al Virodd0fc662005-10-07 07:46:04 +010093static void * r10buf_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 conf_t *conf = data;
96 struct page *page;
97 r10bio_t *r10_bio;
98 struct bio *bio;
99 int i, j;
100 int nalloc;
101
102 r10_bio = r10bio_pool_alloc(gfp_flags, conf);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100103 if (!r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 if (test_bit(MD_RECOVERY_SYNC, &conf->mddev->recovery))
107 nalloc = conf->copies; /* resync */
108 else
109 nalloc = 2; /* recovery */
110
111 /*
112 * Allocate bios.
113 */
114 for (j = nalloc ; j-- ; ) {
NeilBrown67465572010-10-26 17:33:54 +1100115 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if (!bio)
117 goto out_free_bio;
118 r10_bio->devs[j].bio = bio;
119 }
120 /*
121 * Allocate RESYNC_PAGES data pages and attach them
122 * where needed.
123 */
124 for (j = 0 ; j < nalloc; j++) {
125 bio = r10_bio->devs[j].bio;
126 for (i = 0; i < RESYNC_PAGES; i++) {
Namhyung Kimc65060a2011-07-18 17:38:49 +1000127 if (j == 1 && !test_bit(MD_RECOVERY_SYNC,
128 &conf->mddev->recovery)) {
129 /* we can share bv_page's during recovery */
130 struct bio *rbio = r10_bio->devs[0].bio;
131 page = rbio->bi_io_vec[i].bv_page;
132 get_page(page);
133 } else
134 page = alloc_page(gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if (unlikely(!page))
136 goto out_free_pages;
137
138 bio->bi_io_vec[i].bv_page = page;
139 }
140 }
141
142 return r10_bio;
143
144out_free_pages:
145 for ( ; i > 0 ; i--)
NeilBrown1345b1d2006-01-06 00:20:40 -0800146 safe_put_page(bio->bi_io_vec[i-1].bv_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 while (j--)
148 for (i = 0; i < RESYNC_PAGES ; i++)
NeilBrown1345b1d2006-01-06 00:20:40 -0800149 safe_put_page(r10_bio->devs[j].bio->bi_io_vec[i].bv_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 j = -1;
151out_free_bio:
152 while ( ++j < nalloc )
153 bio_put(r10_bio->devs[j].bio);
154 r10bio_pool_free(r10_bio, conf);
155 return NULL;
156}
157
158static void r10buf_pool_free(void *__r10_bio, void *data)
159{
160 int i;
161 conf_t *conf = data;
162 r10bio_t *r10bio = __r10_bio;
163 int j;
164
165 for (j=0; j < conf->copies; j++) {
166 struct bio *bio = r10bio->devs[j].bio;
167 if (bio) {
168 for (i = 0; i < RESYNC_PAGES; i++) {
NeilBrown1345b1d2006-01-06 00:20:40 -0800169 safe_put_page(bio->bi_io_vec[i].bv_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 bio->bi_io_vec[i].bv_page = NULL;
171 }
172 bio_put(bio);
173 }
174 }
175 r10bio_pool_free(r10bio, conf);
176}
177
178static void put_all_bios(conf_t *conf, r10bio_t *r10_bio)
179{
180 int i;
181
182 for (i = 0; i < conf->copies; i++) {
183 struct bio **bio = & r10_bio->devs[i].bio;
NeilBrown0eb3ff12006-01-06 00:20:29 -0800184 if (*bio && *bio != IO_BLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 bio_put(*bio);
186 *bio = NULL;
187 }
188}
189
Arjan van de Ven858119e2006-01-14 13:20:43 -0800190static void free_r10bio(r10bio_t *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
NeilBrown070ec552009-06-16 16:54:21 +1000192 conf_t *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 put_all_bios(conf, r10_bio);
195 mempool_free(r10_bio, conf->r10bio_pool);
196}
197
Arjan van de Ven858119e2006-01-14 13:20:43 -0800198static void put_buf(r10bio_t *r10_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
NeilBrown070ec552009-06-16 16:54:21 +1000200 conf_t *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 mempool_free(r10_bio, conf->r10buf_pool);
203
NeilBrown0a27ec92006-01-06 00:20:13 -0800204 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
207static void reschedule_retry(r10bio_t *r10_bio)
208{
209 unsigned long flags;
210 mddev_t *mddev = r10_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +1000211 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 spin_lock_irqsave(&conf->device_lock, flags);
214 list_add(&r10_bio->retry_list, &conf->retry_list);
NeilBrown4443ae12006-01-06 00:20:28 -0800215 conf->nr_queued ++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 spin_unlock_irqrestore(&conf->device_lock, flags);
217
Arthur Jones388667b2008-07-25 12:03:38 -0700218 /* wake up frozen array... */
219 wake_up(&conf->wait_barrier);
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 md_wakeup_thread(mddev->thread);
222}
223
224/*
225 * raid_end_bio_io() is called when we have finished servicing a mirrored
226 * operation and are ready to return a success/failure code to the buffer
227 * cache layer.
228 */
229static void raid_end_bio_io(r10bio_t *r10_bio)
230{
231 struct bio *bio = r10_bio->master_bio;
NeilBrown856e08e2011-07-28 11:39:23 +1000232 int done;
233 conf_t *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
NeilBrown856e08e2011-07-28 11:39:23 +1000235 if (bio->bi_phys_segments) {
236 unsigned long flags;
237 spin_lock_irqsave(&conf->device_lock, flags);
238 bio->bi_phys_segments--;
239 done = (bio->bi_phys_segments == 0);
240 spin_unlock_irqrestore(&conf->device_lock, flags);
241 } else
242 done = 1;
243 if (!test_bit(R10BIO_Uptodate, &r10_bio->state))
244 clear_bit(BIO_UPTODATE, &bio->bi_flags);
245 if (done) {
246 bio_endio(bio, 0);
247 /*
248 * Wake up any possible resync thread that waits for the device
249 * to go idle.
250 */
251 allow_barrier(conf);
252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 free_r10bio(r10_bio);
254}
255
256/*
257 * Update disk head position estimator based on IRQ completion info.
258 */
259static inline void update_head_pos(int slot, r10bio_t *r10_bio)
260{
NeilBrown070ec552009-06-16 16:54:21 +1000261 conf_t *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 conf->mirrors[r10_bio->devs[slot].devnum].head_position =
264 r10_bio->devs[slot].addr + (r10_bio->sectors);
265}
266
Namhyung Kim778ca012011-07-18 17:38:47 +1000267/*
268 * Find the disk number which triggered given bio
269 */
270static int find_bio_disk(conf_t *conf, r10bio_t *r10_bio, struct bio *bio)
271{
272 int slot;
273
274 for (slot = 0; slot < conf->copies; slot++)
275 if (r10_bio->devs[slot].bio == bio)
276 break;
277
278 BUG_ON(slot == conf->copies);
279 update_head_pos(slot, r10_bio);
280
281 return r10_bio->devs[slot].devnum;
282}
283
NeilBrown6712ecf2007-09-27 12:47:43 +0200284static void raid10_end_read_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100287 r10bio_t *r10_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 int slot, dev;
NeilBrown070ec552009-06-16 16:54:21 +1000289 conf_t *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 slot = r10_bio->read_slot;
293 dev = r10_bio->devs[slot].devnum;
294 /*
295 * this branch is our 'one mirror IO has finished' event handler:
296 */
NeilBrown4443ae12006-01-06 00:20:28 -0800297 update_head_pos(slot, r10_bio);
298
299 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 /*
301 * Set R10BIO_Uptodate in our master bio, so that
302 * we will return a good error code to the higher
303 * levels even if IO on some other mirrored buffer fails.
304 *
305 * The 'master' represents the composite IO operation to
306 * user-side. So if something waits for IO, then it will
307 * wait for the 'master' bio.
308 */
309 set_bit(R10BIO_Uptodate, &r10_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 raid_end_bio_io(r10_bio);
NeilBrown7c4e06f2011-05-11 14:53:17 +1000311 rdev_dec_pending(conf->mirrors[dev].rdev, conf->mddev);
NeilBrown4443ae12006-01-06 00:20:28 -0800312 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /*
NeilBrown7c4e06f2011-05-11 14:53:17 +1000314 * oops, read error - keep the refcount on the rdev
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 */
316 char b[BDEVNAME_SIZE];
Christian Dietrich8bda4702011-07-27 11:00:36 +1000317 printk_ratelimited(KERN_ERR
318 "md/raid10:%s: %s: rescheduling sector %llu\n",
319 mdname(conf->mddev),
320 bdevname(conf->mirrors[dev].rdev->bdev, b),
321 (unsigned long long)r10_bio->sector);
NeilBrown856e08e2011-07-28 11:39:23 +1000322 set_bit(R10BIO_ReadError, &r10_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 reschedule_retry(r10_bio);
324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
NeilBrown6712ecf2007-09-27 12:47:43 +0200327static void raid10_end_write_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100330 r10bio_t *r10_bio = bio->bi_private;
Namhyung Kim778ca012011-07-18 17:38:47 +1000331 int dev;
NeilBrown070ec552009-06-16 16:54:21 +1000332 conf_t *conf = r10_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Namhyung Kim778ca012011-07-18 17:38:47 +1000334 dev = find_bio_disk(conf, r10_bio, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /*
337 * this branch is our 'one mirror IO has finished' event handler:
338 */
NeilBrown6cce3b22006-01-06 00:20:16 -0800339 if (!uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 md_error(r10_bio->mddev, conf->mirrors[dev].rdev);
NeilBrown6cce3b22006-01-06 00:20:16 -0800341 /* an I/O failed, we can't clear the bitmap */
342 set_bit(R10BIO_Degraded, &r10_bio->state);
343 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 /*
345 * Set R10BIO_Uptodate in our master bio, so that
346 * we will return a good error code for to the higher
347 * levels even if IO on some other mirrored buffer fails.
348 *
349 * The 'master' represents the composite IO operation to
350 * user-side. So if something waits for IO, then it will
351 * wait for the 'master' bio.
352 */
353 set_bit(R10BIO_Uptodate, &r10_bio->state);
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 /*
356 *
357 * Let's see if all mirrored write operations have finished
358 * already.
359 */
360 if (atomic_dec_and_test(&r10_bio->remaining)) {
NeilBrown6cce3b22006-01-06 00:20:16 -0800361 /* clear the bitmap if all writes complete successfully */
362 bitmap_endwrite(r10_bio->mddev->bitmap, r10_bio->sector,
363 r10_bio->sectors,
364 !test_bit(R10BIO_Degraded, &r10_bio->state),
365 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 md_write_end(r10_bio->mddev);
367 raid_end_bio_io(r10_bio);
368 }
369
370 rdev_dec_pending(conf->mirrors[dev].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
373
374/*
375 * RAID10 layout manager
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300376 * As well as the chunksize and raid_disks count, there are two
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 * parameters: near_copies and far_copies.
378 * near_copies * far_copies must be <= raid_disks.
379 * Normally one of these will be 1.
380 * If both are 1, we get raid0.
381 * If near_copies == raid_disks, we get raid1.
382 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300383 * Chunks are laid out in raid0 style with near_copies copies of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * first chunk, followed by near_copies copies of the next chunk and
385 * so on.
386 * If far_copies > 1, then after 1/far_copies of the array has been assigned
387 * as described above, we start again with a device offset of near_copies.
388 * So we effectively have another copy of the whole array further down all
389 * the drives, but with blocks on different drives.
390 * With this layout, and block is never stored twice on the one device.
391 *
392 * raid10_find_phys finds the sector offset of a given virtual sector
NeilBrownc93983b2006-06-26 00:27:41 -0700393 * on each device that it is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 *
395 * raid10_find_virt does the reverse mapping, from a device and a
396 * sector offset to a virtual address
397 */
398
399static void raid10_find_phys(conf_t *conf, r10bio_t *r10bio)
400{
401 int n,f;
402 sector_t sector;
403 sector_t chunk;
404 sector_t stripe;
405 int dev;
406
407 int slot = 0;
408
409 /* now calculate first sector/dev */
410 chunk = r10bio->sector >> conf->chunk_shift;
411 sector = r10bio->sector & conf->chunk_mask;
412
413 chunk *= conf->near_copies;
414 stripe = chunk;
415 dev = sector_div(stripe, conf->raid_disks);
NeilBrownc93983b2006-06-26 00:27:41 -0700416 if (conf->far_offset)
417 stripe *= conf->far_copies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 sector += stripe << conf->chunk_shift;
420
421 /* and calculate all the others */
422 for (n=0; n < conf->near_copies; n++) {
423 int d = dev;
424 sector_t s = sector;
425 r10bio->devs[slot].addr = sector;
426 r10bio->devs[slot].devnum = d;
427 slot++;
428
429 for (f = 1; f < conf->far_copies; f++) {
430 d += conf->near_copies;
431 if (d >= conf->raid_disks)
432 d -= conf->raid_disks;
433 s += conf->stride;
434 r10bio->devs[slot].devnum = d;
435 r10bio->devs[slot].addr = s;
436 slot++;
437 }
438 dev++;
439 if (dev >= conf->raid_disks) {
440 dev = 0;
441 sector += (conf->chunk_mask + 1);
442 }
443 }
444 BUG_ON(slot != conf->copies);
445}
446
447static sector_t raid10_find_virt(conf_t *conf, sector_t sector, int dev)
448{
449 sector_t offset, chunk, vchunk;
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 offset = sector & conf->chunk_mask;
NeilBrownc93983b2006-06-26 00:27:41 -0700452 if (conf->far_offset) {
453 int fc;
454 chunk = sector >> conf->chunk_shift;
455 fc = sector_div(chunk, conf->far_copies);
456 dev -= fc * conf->near_copies;
457 if (dev < 0)
458 dev += conf->raid_disks;
459 } else {
NeilBrown64a742b2007-02-28 20:11:18 -0800460 while (sector >= conf->stride) {
NeilBrownc93983b2006-06-26 00:27:41 -0700461 sector -= conf->stride;
462 if (dev < conf->near_copies)
463 dev += conf->raid_disks - conf->near_copies;
464 else
465 dev -= conf->near_copies;
466 }
467 chunk = sector >> conf->chunk_shift;
468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 vchunk = chunk * conf->raid_disks + dev;
470 sector_div(vchunk, conf->near_copies);
471 return (vchunk << conf->chunk_shift) + offset;
472}
473
474/**
475 * raid10_mergeable_bvec -- tell bio layer if a two requests can be merged
476 * @q: request queue
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200477 * @bvm: properties of new bio
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 * @biovec: the request that could be merged to it.
479 *
480 * Return amount of bytes we can accept at this offset
481 * If near_copies == raid_disk, there are no striping issues,
482 * but in that case, the function isn't called at all.
483 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200484static int raid10_mergeable_bvec(struct request_queue *q,
485 struct bvec_merge_data *bvm,
486 struct bio_vec *biovec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 mddev_t *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200489 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +1000491 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200492 unsigned int bio_sectors = bvm->bi_size >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
495 if (max < 0) max = 0; /* bio_add cannot handle a negative return */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200496 if (max <= biovec->bv_len && bio_sectors == 0)
497 return biovec->bv_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 else
499 return max;
500}
501
502/*
503 * This routine returns the disk from which the requested read should
504 * be done. There is a per-array 'next expected sequential IO' sector
505 * number - if this matches on the next IO then we use the last disk.
506 * There is also a per-disk 'last know head position' sector that is
507 * maintained from IRQ contexts, both the normal and the resync IO
508 * completion handlers update this position correctly. If there is no
509 * perfect sequential match then we pick the disk whose head is closest.
510 *
511 * If there are 2 mirrors in the same 2 devices, performance degrades
512 * because position is mirror, not device based.
513 *
514 * The rdev for the device selected will have nr_pending incremented.
515 */
516
517/*
518 * FIXME: possibly should rethink readbalancing and do it differently
519 * depending on near_copies / far_copies geometry.
520 */
NeilBrown856e08e2011-07-28 11:39:23 +1000521static int read_balance(conf_t *conf, r10bio_t *r10_bio, int *max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000523 const sector_t this_sector = r10_bio->sector;
NeilBrown56d99122011-05-11 14:27:03 +1000524 int disk, slot;
NeilBrown856e08e2011-07-28 11:39:23 +1000525 int sectors = r10_bio->sectors;
526 int best_good_sectors;
NeilBrown56d99122011-05-11 14:27:03 +1000527 sector_t new_distance, best_dist;
Suzanne Woodd6065f72005-11-08 21:39:27 -0800528 mdk_rdev_t *rdev;
NeilBrown56d99122011-05-11 14:27:03 +1000529 int do_balance;
530 int best_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 raid10_find_phys(conf, r10_bio);
533 rcu_read_lock();
NeilBrown56d99122011-05-11 14:27:03 +1000534retry:
NeilBrown856e08e2011-07-28 11:39:23 +1000535 sectors = r10_bio->sectors;
NeilBrown56d99122011-05-11 14:27:03 +1000536 best_slot = -1;
537 best_dist = MaxSector;
NeilBrown856e08e2011-07-28 11:39:23 +1000538 best_good_sectors = 0;
NeilBrown56d99122011-05-11 14:27:03 +1000539 do_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 /*
541 * Check if we can balance. We can balance on the whole
NeilBrown6cce3b22006-01-06 00:20:16 -0800542 * device if no resync is going on (recovery is ok), or below
543 * the resync window. We take the first readable disk when
544 * above the resync window.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 */
546 if (conf->mddev->recovery_cp < MaxSector
NeilBrown56d99122011-05-11 14:27:03 +1000547 && (this_sector + sectors >= conf->next_resync))
548 do_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
NeilBrown56d99122011-05-11 14:27:03 +1000550 for (slot = 0; slot < conf->copies ; slot++) {
NeilBrown856e08e2011-07-28 11:39:23 +1000551 sector_t first_bad;
552 int bad_sectors;
553 sector_t dev_sector;
554
NeilBrown56d99122011-05-11 14:27:03 +1000555 if (r10_bio->devs[slot].bio == IO_BLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 continue;
NeilBrown56d99122011-05-11 14:27:03 +1000557 disk = r10_bio->devs[slot].devnum;
558 rdev = rcu_dereference(conf->mirrors[disk].rdev);
559 if (rdev == NULL)
560 continue;
561 if (!test_bit(In_sync, &rdev->flags))
562 continue;
563
NeilBrown856e08e2011-07-28 11:39:23 +1000564 dev_sector = r10_bio->devs[slot].addr;
565 if (is_badblock(rdev, dev_sector, sectors,
566 &first_bad, &bad_sectors)) {
567 if (best_dist < MaxSector)
568 /* Already have a better slot */
569 continue;
570 if (first_bad <= dev_sector) {
571 /* Cannot read here. If this is the
572 * 'primary' device, then we must not read
573 * beyond 'bad_sectors' from another device.
574 */
575 bad_sectors -= (dev_sector - first_bad);
576 if (!do_balance && sectors > bad_sectors)
577 sectors = bad_sectors;
578 if (best_good_sectors > sectors)
579 best_good_sectors = sectors;
580 } else {
581 sector_t good_sectors =
582 first_bad - dev_sector;
583 if (good_sectors > best_good_sectors) {
584 best_good_sectors = good_sectors;
585 best_slot = slot;
586 }
587 if (!do_balance)
588 /* Must read from here */
589 break;
590 }
591 continue;
592 } else
593 best_good_sectors = sectors;
594
NeilBrown56d99122011-05-11 14:27:03 +1000595 if (!do_balance)
596 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
NeilBrown22dfdf52005-11-28 13:44:09 -0800598 /* This optimisation is debatable, and completely destroys
599 * sequential read speed for 'far copies' arrays. So only
600 * keep it for 'near' arrays, and review those later.
601 */
NeilBrown56d99122011-05-11 14:27:03 +1000602 if (conf->near_copies > 1 && !atomic_read(&rdev->nr_pending))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 break;
Keld Simonsen8ed3a192008-03-04 14:29:34 -0800604
605 /* for far > 1 always use the lowest address */
606 if (conf->far_copies > 1)
NeilBrown56d99122011-05-11 14:27:03 +1000607 new_distance = r10_bio->devs[slot].addr;
Keld Simonsen8ed3a192008-03-04 14:29:34 -0800608 else
NeilBrown56d99122011-05-11 14:27:03 +1000609 new_distance = abs(r10_bio->devs[slot].addr -
610 conf->mirrors[disk].head_position);
611 if (new_distance < best_dist) {
612 best_dist = new_distance;
613 best_slot = slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615 }
NeilBrown56d99122011-05-11 14:27:03 +1000616 if (slot == conf->copies)
617 slot = best_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
NeilBrown56d99122011-05-11 14:27:03 +1000619 if (slot >= 0) {
620 disk = r10_bio->devs[slot].devnum;
621 rdev = rcu_dereference(conf->mirrors[disk].rdev);
622 if (!rdev)
623 goto retry;
624 atomic_inc(&rdev->nr_pending);
625 if (test_bit(Faulty, &rdev->flags)) {
626 /* Cannot risk returning a device that failed
627 * before we inc'ed nr_pending
628 */
629 rdev_dec_pending(rdev, conf->mddev);
630 goto retry;
631 }
632 r10_bio->read_slot = slot;
633 } else
NeilBrown29fc7e32006-02-03 03:03:41 -0800634 disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 rcu_read_unlock();
NeilBrown856e08e2011-07-28 11:39:23 +1000636 *max_sectors = best_good_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 return disk;
639}
640
NeilBrown0d129222006-10-03 01:15:54 -0700641static int raid10_congested(void *data, int bits)
642{
643 mddev_t *mddev = data;
NeilBrown070ec552009-06-16 16:54:21 +1000644 conf_t *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700645 int i, ret = 0;
646
NeilBrown3fa841d2009-09-23 18:10:29 +1000647 if (mddev_congested(mddev, bits))
648 return 1;
NeilBrown0d129222006-10-03 01:15:54 -0700649 rcu_read_lock();
NeilBrown84707f32010-03-16 17:23:35 +1100650 for (i = 0; i < conf->raid_disks && ret == 0; i++) {
NeilBrown0d129222006-10-03 01:15:54 -0700651 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
652 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200653 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700654
655 ret |= bdi_congested(&q->backing_dev_info, bits);
656 }
657 }
658 rcu_read_unlock();
659 return ret;
660}
661
Jens Axboe7eaceac2011-03-10 08:52:07 +0100662static void flush_pending_writes(conf_t *conf)
NeilBrowna35e63e2008-03-04 14:29:29 -0800663{
664 /* Any writes that have been queued but are awaiting
665 * bitmap updates get flushed here.
NeilBrowna35e63e2008-03-04 14:29:29 -0800666 */
NeilBrowna35e63e2008-03-04 14:29:29 -0800667 spin_lock_irq(&conf->device_lock);
668
669 if (conf->pending_bio_list.head) {
670 struct bio *bio;
671 bio = bio_list_get(&conf->pending_bio_list);
NeilBrowna35e63e2008-03-04 14:29:29 -0800672 spin_unlock_irq(&conf->device_lock);
673 /* flush any pending bitmap writes to disk
674 * before proceeding w/ I/O */
675 bitmap_unplug(conf->mddev->bitmap);
676
677 while (bio) { /* submit pending writes */
678 struct bio *next = bio->bi_next;
679 bio->bi_next = NULL;
680 generic_make_request(bio);
681 bio = next;
682 }
NeilBrowna35e63e2008-03-04 14:29:29 -0800683 } else
684 spin_unlock_irq(&conf->device_lock);
NeilBrowna35e63e2008-03-04 14:29:29 -0800685}
Jens Axboe7eaceac2011-03-10 08:52:07 +0100686
NeilBrown0a27ec92006-01-06 00:20:13 -0800687/* Barriers....
688 * Sometimes we need to suspend IO while we do something else,
689 * either some resync/recovery, or reconfigure the array.
690 * To do this we raise a 'barrier'.
691 * The 'barrier' is a counter that can be raised multiple times
692 * to count how many activities are happening which preclude
693 * normal IO.
694 * We can only raise the barrier if there is no pending IO.
695 * i.e. if nr_pending == 0.
696 * We choose only to raise the barrier if no-one is waiting for the
697 * barrier to go down. This means that as soon as an IO request
698 * is ready, no other operations which require a barrier will start
699 * until the IO request has had a chance.
700 *
701 * So: regular IO calls 'wait_barrier'. When that returns there
702 * is no backgroup IO happening, It must arrange to call
703 * allow_barrier when it has finished its IO.
704 * backgroup IO calls must call raise_barrier. Once that returns
705 * there is no normal IO happeing. It must arrange to call
706 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
NeilBrown6cce3b22006-01-06 00:20:16 -0800709static void raise_barrier(conf_t *conf, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
NeilBrown6cce3b22006-01-06 00:20:16 -0800711 BUG_ON(force && !conf->barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 spin_lock_irq(&conf->resync_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
NeilBrown6cce3b22006-01-06 00:20:16 -0800714 /* Wait until no block IO is waiting (unless 'force') */
715 wait_event_lock_irq(conf->wait_barrier, force || !conf->nr_waiting,
NeilBrownc3b328a2011-04-18 18:25:43 +1000716 conf->resync_lock, );
NeilBrown0a27ec92006-01-06 00:20:13 -0800717
718 /* block any new IO from starting */
719 conf->barrier++;
720
NeilBrownc3b328a2011-04-18 18:25:43 +1000721 /* Now wait for all pending IO to complete */
NeilBrown0a27ec92006-01-06 00:20:13 -0800722 wait_event_lock_irq(conf->wait_barrier,
723 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
NeilBrownc3b328a2011-04-18 18:25:43 +1000724 conf->resync_lock, );
NeilBrown0a27ec92006-01-06 00:20:13 -0800725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 spin_unlock_irq(&conf->resync_lock);
727}
728
NeilBrown0a27ec92006-01-06 00:20:13 -0800729static void lower_barrier(conf_t *conf)
730{
731 unsigned long flags;
732 spin_lock_irqsave(&conf->resync_lock, flags);
733 conf->barrier--;
734 spin_unlock_irqrestore(&conf->resync_lock, flags);
735 wake_up(&conf->wait_barrier);
736}
737
738static void wait_barrier(conf_t *conf)
739{
740 spin_lock_irq(&conf->resync_lock);
741 if (conf->barrier) {
742 conf->nr_waiting++;
743 wait_event_lock_irq(conf->wait_barrier, !conf->barrier,
744 conf->resync_lock,
NeilBrownc3b328a2011-04-18 18:25:43 +1000745 );
NeilBrown0a27ec92006-01-06 00:20:13 -0800746 conf->nr_waiting--;
747 }
748 conf->nr_pending++;
749 spin_unlock_irq(&conf->resync_lock);
750}
751
752static void allow_barrier(conf_t *conf)
753{
754 unsigned long flags;
755 spin_lock_irqsave(&conf->resync_lock, flags);
756 conf->nr_pending--;
757 spin_unlock_irqrestore(&conf->resync_lock, flags);
758 wake_up(&conf->wait_barrier);
759}
760
NeilBrown4443ae12006-01-06 00:20:28 -0800761static void freeze_array(conf_t *conf)
762{
763 /* stop syncio and normal IO and wait for everything to
NeilBrownf1885932006-01-06 00:20:42 -0800764 * go quiet.
NeilBrown4443ae12006-01-06 00:20:28 -0800765 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -0800766 * wait until nr_pending match nr_queued+1
767 * This is called in the context of one normal IO request
768 * that has failed. Thus any sync request that might be pending
769 * will be blocked by nr_pending, and we need to wait for
770 * pending IO requests to complete or be queued for re-try.
771 * Thus the number queued (nr_queued) plus this request (1)
772 * must match the number of pending IOs (nr_pending) before
773 * we continue.
NeilBrown4443ae12006-01-06 00:20:28 -0800774 */
775 spin_lock_irq(&conf->resync_lock);
776 conf->barrier++;
777 conf->nr_waiting++;
778 wait_event_lock_irq(conf->wait_barrier,
NeilBrown1c830532008-03-04 14:29:35 -0800779 conf->nr_pending == conf->nr_queued+1,
NeilBrown4443ae12006-01-06 00:20:28 -0800780 conf->resync_lock,
NeilBrownc3b328a2011-04-18 18:25:43 +1000781 flush_pending_writes(conf));
782
NeilBrown4443ae12006-01-06 00:20:28 -0800783 spin_unlock_irq(&conf->resync_lock);
784}
785
786static void unfreeze_array(conf_t *conf)
787{
788 /* reverse the effect of the freeze */
789 spin_lock_irq(&conf->resync_lock);
790 conf->barrier--;
791 conf->nr_waiting--;
792 wake_up(&conf->wait_barrier);
793 spin_unlock_irq(&conf->resync_lock);
794}
795
NeilBrown21a52c62010-04-01 15:02:13 +1100796static int make_request(mddev_t *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
NeilBrown070ec552009-06-16 16:54:21 +1000798 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 mirror_info_t *mirror;
800 r10bio_t *r10_bio;
801 struct bio *read_bio;
802 int i;
803 int chunk_sects = conf->chunk_mask + 1;
Jens Axboea3623572005-11-01 09:26:16 +0100804 const int rw = bio_data_dir(bio);
NeilBrown2c7d46e2010-08-18 16:16:05 +1000805 const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
Tejun Heoe9c74692010-09-03 11:56:18 +0200806 const unsigned long do_fua = (bio->bi_rw & REQ_FUA);
NeilBrown6cce3b22006-01-06 00:20:16 -0800807 unsigned long flags;
Dan Williams6bfe0b42008-04-30 00:52:32 -0700808 mdk_rdev_t *blocked_rdev;
NeilBrownc3b328a2011-04-18 18:25:43 +1000809 int plugged;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Tejun Heoe9c74692010-09-03 11:56:18 +0200811 if (unlikely(bio->bi_rw & REQ_FLUSH)) {
812 md_flush_request(mddev, bio);
NeilBrowne5dcdd82005-09-09 16:23:41 -0700813 return 0;
814 }
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /* If this request crosses a chunk boundary, we need to
817 * split it. This will only happen for 1 PAGE (or less) requests.
818 */
819 if (unlikely( (bio->bi_sector & conf->chunk_mask) + (bio->bi_size >> 9)
820 > chunk_sects &&
821 conf->near_copies < conf->raid_disks)) {
822 struct bio_pair *bp;
823 /* Sanity check -- queue functions should prevent this happening */
824 if (bio->bi_vcnt != 1 ||
825 bio->bi_idx != 0)
826 goto bad_map;
827 /* This is a one page bio that upper layers
828 * refuse to split for us, so we need to split it.
829 */
Denis ChengRq6feef532008-10-09 08:57:05 +0200830 bp = bio_split(bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 chunk_sects - (bio->bi_sector & (chunk_sects - 1)) );
NeilBrown51e9ac72010-08-07 21:17:00 +1000832
833 /* Each of these 'make_request' calls will call 'wait_barrier'.
834 * If the first succeeds but the second blocks due to the resync
835 * thread raising the barrier, we will deadlock because the
836 * IO to the underlying device will be queued in generic_make_request
837 * and will never complete, so will never reduce nr_pending.
838 * So increment nr_waiting here so no new raise_barriers will
839 * succeed, and so the second wait_barrier cannot block.
840 */
841 spin_lock_irq(&conf->resync_lock);
842 conf->nr_waiting++;
843 spin_unlock_irq(&conf->resync_lock);
844
NeilBrown21a52c62010-04-01 15:02:13 +1100845 if (make_request(mddev, &bp->bio1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 generic_make_request(&bp->bio1);
NeilBrown21a52c62010-04-01 15:02:13 +1100847 if (make_request(mddev, &bp->bio2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 generic_make_request(&bp->bio2);
849
NeilBrown51e9ac72010-08-07 21:17:00 +1000850 spin_lock_irq(&conf->resync_lock);
851 conf->nr_waiting--;
852 wake_up(&conf->wait_barrier);
853 spin_unlock_irq(&conf->resync_lock);
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 bio_pair_release(bp);
856 return 0;
857 bad_map:
NeilBrown128595e2010-05-03 14:47:14 +1000858 printk("md/raid10:%s: make_request bug: can't convert block across chunks"
859 " or bigger than %dk %llu %d\n", mdname(mddev), chunk_sects/2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 (unsigned long long)bio->bi_sector, bio->bi_size >> 10);
861
NeilBrown6712ecf2007-09-27 12:47:43 +0200862 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return 0;
864 }
865
NeilBrown3d310eb2005-06-21 17:17:26 -0700866 md_write_start(mddev, bio);
NeilBrown06d91a52005-06-21 17:17:12 -0700867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 /*
869 * Register the new request and wait if the reconstruction
870 * thread has put up a bar for new requests.
871 * Continue immediately if no resync is active currently.
872 */
NeilBrown0a27ec92006-01-06 00:20:13 -0800873 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
876
877 r10_bio->master_bio = bio;
878 r10_bio->sectors = bio->bi_size >> 9;
879
880 r10_bio->mddev = mddev;
881 r10_bio->sector = bio->bi_sector;
NeilBrown6cce3b22006-01-06 00:20:16 -0800882 r10_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
NeilBrown856e08e2011-07-28 11:39:23 +1000884 /* We might need to issue multiple reads to different
885 * devices if there are bad blocks around, so we keep
886 * track of the number of reads in bio->bi_phys_segments.
887 * If this is 0, there is only one r10_bio and no locking
888 * will be needed when the request completes. If it is
889 * non-zero, then it is the number of not-completed requests.
890 */
891 bio->bi_phys_segments = 0;
892 clear_bit(BIO_SEG_VALID, &bio->bi_flags);
893
Jens Axboea3623572005-11-01 09:26:16 +0100894 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 /*
896 * read balancing logic:
897 */
NeilBrown856e08e2011-07-28 11:39:23 +1000898 int max_sectors;
899 int disk;
900 int slot;
901
902read_again:
903 disk = read_balance(conf, r10_bio, &max_sectors);
904 slot = r10_bio->read_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (disk < 0) {
906 raid_end_bio_io(r10_bio);
907 return 0;
908 }
909 mirror = conf->mirrors + disk;
910
NeilBrowna167f662010-10-26 18:31:13 +1100911 read_bio = bio_clone_mddev(bio, GFP_NOIO, mddev);
NeilBrown856e08e2011-07-28 11:39:23 +1000912 md_trim_bio(read_bio, r10_bio->sector - bio->bi_sector,
913 max_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 r10_bio->devs[slot].bio = read_bio;
916
917 read_bio->bi_sector = r10_bio->devs[slot].addr +
918 mirror->rdev->data_offset;
919 read_bio->bi_bdev = mirror->rdev->bdev;
920 read_bio->bi_end_io = raid10_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200921 read_bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 read_bio->bi_private = r10_bio;
923
NeilBrown856e08e2011-07-28 11:39:23 +1000924 if (max_sectors < r10_bio->sectors) {
925 /* Could not read all from this device, so we will
926 * need another r10_bio.
927 */
928 int sectors_handled;
929
930 sectors_handled = (r10_bio->sectors + max_sectors
931 - bio->bi_sector);
932 r10_bio->sectors = max_sectors;
933 spin_lock_irq(&conf->device_lock);
934 if (bio->bi_phys_segments == 0)
935 bio->bi_phys_segments = 2;
936 else
937 bio->bi_phys_segments++;
938 spin_unlock(&conf->device_lock);
939 /* Cannot call generic_make_request directly
940 * as that will be queued in __generic_make_request
941 * and subsequent mempool_alloc might block
942 * waiting for it. so hand bio over to raid10d.
943 */
944 reschedule_retry(r10_bio);
945
946 r10_bio = mempool_alloc(conf->r10bio_pool, GFP_NOIO);
947
948 r10_bio->master_bio = bio;
949 r10_bio->sectors = ((bio->bi_size >> 9)
950 - sectors_handled);
951 r10_bio->state = 0;
952 r10_bio->mddev = mddev;
953 r10_bio->sector = bio->bi_sector + sectors_handled;
954 goto read_again;
955 } else
956 generic_make_request(read_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 return 0;
958 }
959
960 /*
961 * WRITE:
962 */
Dan Williams6bfe0b42008-04-30 00:52:32 -0700963 /* first select target devices under rcu_lock and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 * inc refcount on their rdev. Record them by setting
965 * bios[x] to bio
966 */
NeilBrownc3b328a2011-04-18 18:25:43 +1000967 plugged = mddev_check_plugged(mddev);
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 raid10_find_phys(conf, r10_bio);
Dan Williams6bfe0b42008-04-30 00:52:32 -0700970 retry_write:
Harvey Harrisoncb6969e2008-05-06 20:42:32 -0700971 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 rcu_read_lock();
973 for (i = 0; i < conf->copies; i++) {
974 int d = r10_bio->devs[i].devnum;
Suzanne Woodd6065f72005-11-08 21:39:27 -0800975 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[d].rdev);
Dan Williams6bfe0b42008-04-30 00:52:32 -0700976 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
977 atomic_inc(&rdev->nr_pending);
978 blocked_rdev = rdev;
979 break;
980 }
981 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800982 atomic_inc(&rdev->nr_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 r10_bio->devs[i].bio = bio;
NeilBrown6cce3b22006-01-06 00:20:16 -0800984 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 r10_bio->devs[i].bio = NULL;
NeilBrown6cce3b22006-01-06 00:20:16 -0800986 set_bit(R10BIO_Degraded, &r10_bio->state);
987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989 rcu_read_unlock();
990
Dan Williams6bfe0b42008-04-30 00:52:32 -0700991 if (unlikely(blocked_rdev)) {
992 /* Have to wait for this device to get unblocked, then retry */
993 int j;
994 int d;
995
996 for (j = 0; j < i; j++)
997 if (r10_bio->devs[j].bio) {
998 d = r10_bio->devs[j].devnum;
999 rdev_dec_pending(conf->mirrors[d].rdev, mddev);
1000 }
1001 allow_barrier(conf);
1002 md_wait_for_blocked_rdev(blocked_rdev, mddev);
1003 wait_barrier(conf);
1004 goto retry_write;
1005 }
1006
NeilBrown4e780642010-10-19 12:54:01 +11001007 atomic_set(&r10_bio->remaining, 1);
1008 bitmap_startwrite(mddev->bitmap, bio->bi_sector, r10_bio->sectors, 0);
NeilBrown06d91a52005-06-21 17:17:12 -07001009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 for (i = 0; i < conf->copies; i++) {
1011 struct bio *mbio;
1012 int d = r10_bio->devs[i].devnum;
1013 if (!r10_bio->devs[i].bio)
1014 continue;
1015
NeilBrowna167f662010-10-26 18:31:13 +11001016 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 r10_bio->devs[i].bio = mbio;
1018
1019 mbio->bi_sector = r10_bio->devs[i].addr+
1020 conf->mirrors[d].rdev->data_offset;
1021 mbio->bi_bdev = conf->mirrors[d].rdev->bdev;
1022 mbio->bi_end_io = raid10_end_write_request;
Tejun Heoe9c74692010-09-03 11:56:18 +02001023 mbio->bi_rw = WRITE | do_sync | do_fua;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 mbio->bi_private = r10_bio;
1025
1026 atomic_inc(&r10_bio->remaining);
NeilBrown4e780642010-10-19 12:54:01 +11001027 spin_lock_irqsave(&conf->device_lock, flags);
1028 bio_list_add(&conf->pending_bio_list, mbio);
NeilBrown4e780642010-10-19 12:54:01 +11001029 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031
NeilBrown4e780642010-10-19 12:54:01 +11001032 if (atomic_dec_and_test(&r10_bio->remaining)) {
1033 /* This matches the end of raid10_end_write_request() */
1034 bitmap_endwrite(r10_bio->mddev->bitmap, r10_bio->sector,
1035 r10_bio->sectors,
1036 !test_bit(R10BIO_Degraded, &r10_bio->state),
1037 0);
Arne Redlichf6f953a2007-07-31 00:37:57 -07001038 md_write_end(mddev);
1039 raid_end_bio_io(r10_bio);
Arne Redlichf6f953a2007-07-31 00:37:57 -07001040 }
1041
NeilBrowna35e63e2008-03-04 14:29:29 -08001042 /* In case raid10d snuck in to freeze_array */
1043 wake_up(&conf->wait_barrier);
1044
NeilBrownc3b328a2011-04-18 18:25:43 +10001045 if (do_sync || !mddev->bitmap || !plugged)
Lars Ellenberge3881a62007-01-10 23:15:37 -08001046 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return 0;
1048}
1049
1050static void status(struct seq_file *seq, mddev_t *mddev)
1051{
NeilBrown070ec552009-06-16 16:54:21 +10001052 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 int i;
1054
1055 if (conf->near_copies < conf->raid_disks)
Andre Noll9d8f0362009-06-18 08:45:01 +10001056 seq_printf(seq, " %dK chunks", mddev->chunk_sectors / 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (conf->near_copies > 1)
1058 seq_printf(seq, " %d near-copies", conf->near_copies);
NeilBrownc93983b2006-06-26 00:27:41 -07001059 if (conf->far_copies > 1) {
1060 if (conf->far_offset)
1061 seq_printf(seq, " %d offset-copies", conf->far_copies);
1062 else
1063 seq_printf(seq, " %d far-copies", conf->far_copies);
1064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 seq_printf(seq, " [%d/%d] [", conf->raid_disks,
NeilBrown76186dd2006-10-03 01:15:48 -07001066 conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 for (i = 0; i < conf->raid_disks; i++)
1068 seq_printf(seq, "%s",
1069 conf->mirrors[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08001070 test_bit(In_sync, &conf->mirrors[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 seq_printf(seq, "]");
1072}
1073
NeilBrown700c7212011-07-27 11:00:36 +10001074/* check if there are enough drives for
1075 * every block to appear on atleast one.
1076 * Don't consider the device numbered 'ignore'
1077 * as we might be about to remove it.
1078 */
1079static int enough(conf_t *conf, int ignore)
1080{
1081 int first = 0;
1082
1083 do {
1084 int n = conf->copies;
1085 int cnt = 0;
1086 while (n--) {
1087 if (conf->mirrors[first].rdev &&
1088 first != ignore)
1089 cnt++;
1090 first = (first+1) % conf->raid_disks;
1091 }
1092 if (cnt == 0)
1093 return 0;
1094 } while (first != 0);
1095 return 1;
1096}
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1099{
1100 char b[BDEVNAME_SIZE];
NeilBrown070ec552009-06-16 16:54:21 +10001101 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 /*
1104 * If it is not operational, then we have already marked it as dead
1105 * else if it is the last working disks, ignore the error, let the
1106 * next level up know.
1107 * else mark the drive as failed
1108 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001109 if (test_bit(In_sync, &rdev->flags)
NeilBrown700c7212011-07-27 11:00:36 +10001110 && !enough(conf, rdev->raid_disk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 /*
1112 * Don't fail the drive, just return an IO error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 */
1114 return;
NeilBrownc04be0a2006-10-03 01:15:53 -07001115 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1116 unsigned long flags;
1117 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001119 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 /*
1121 * if recovery is running, make sure it aborts.
1122 */
NeilBrowndfc70642008-05-23 13:04:39 -07001123 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 }
NeilBrownde393cd2011-07-28 11:31:48 +10001125 set_bit(Blocked, &rdev->flags);
NeilBrownb2d444d2005-11-08 21:39:31 -08001126 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -07001127 set_bit(MD_CHANGE_DEVS, &mddev->flags);
Joe Perches067032b2011-01-14 09:14:33 +11001128 printk(KERN_ALERT
1129 "md/raid10:%s: Disk failure on %s, disabling device.\n"
1130 "md/raid10:%s: Operation continuing on %d devices.\n",
NeilBrown128595e2010-05-03 14:47:14 +10001131 mdname(mddev), bdevname(rdev->bdev, b),
1132 mdname(mddev), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
1134
1135static void print_conf(conf_t *conf)
1136{
1137 int i;
1138 mirror_info_t *tmp;
1139
NeilBrown128595e2010-05-03 14:47:14 +10001140 printk(KERN_DEBUG "RAID10 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 if (!conf) {
NeilBrown128595e2010-05-03 14:47:14 +10001142 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return;
1144 }
NeilBrown128595e2010-05-03 14:47:14 +10001145 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 conf->raid_disks);
1147
1148 for (i = 0; i < conf->raid_disks; i++) {
1149 char b[BDEVNAME_SIZE];
1150 tmp = conf->mirrors + i;
1151 if (tmp->rdev)
NeilBrown128595e2010-05-03 14:47:14 +10001152 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownb2d444d2005-11-08 21:39:31 -08001153 i, !test_bit(In_sync, &tmp->rdev->flags),
1154 !test_bit(Faulty, &tmp->rdev->flags),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 bdevname(tmp->rdev->bdev,b));
1156 }
1157}
1158
1159static void close_sync(conf_t *conf)
1160{
NeilBrown0a27ec92006-01-06 00:20:13 -08001161 wait_barrier(conf);
1162 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 mempool_destroy(conf->r10buf_pool);
1165 conf->r10buf_pool = NULL;
1166}
1167
1168static int raid10_spare_active(mddev_t *mddev)
1169{
1170 int i;
1171 conf_t *conf = mddev->private;
1172 mirror_info_t *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10001173 int count = 0;
1174 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 /*
1177 * Find all non-in_sync disks within the RAID10 configuration
1178 * and mark them in_sync
1179 */
1180 for (i = 0; i < conf->raid_disks; i++) {
1181 tmp = conf->mirrors + i;
1182 if (tmp->rdev
NeilBrownb2d444d2005-11-08 21:39:31 -08001183 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07001184 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10001185 count++;
Adrian Drzewieckie6ffbcb2010-08-18 11:49:02 +10001186 sysfs_notify_dirent(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
1188 }
NeilBrown6b965622010-08-18 11:56:59 +10001189 spin_lock_irqsave(&conf->device_lock, flags);
1190 mddev->degraded -= count;
1191 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 print_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10001194 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
1197
1198static int raid10_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
1199{
1200 conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001201 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 int mirror;
Neil Brown6c2fce22008-06-28 08:31:31 +10001203 int first = 0;
NeilBrown84707f32010-03-16 17:23:35 +11001204 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
NeilBrown34b343c2011-07-28 11:31:47 +10001206 if (rdev->badblocks.count)
1207 return -EINVAL;
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 if (mddev->recovery_cp < MaxSector)
1210 /* only hot-add to in-sync arrays, as recovery is
1211 * very different from resync
1212 */
Neil Brown199050e2008-06-28 08:31:33 +10001213 return -EBUSY;
NeilBrown700c7212011-07-27 11:00:36 +10001214 if (!enough(conf, -1))
Neil Brown199050e2008-06-28 08:31:33 +10001215 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
NeilBrowna53a6c82008-11-06 17:28:20 +11001217 if (rdev->raid_disk >= 0)
Neil Brown6c2fce22008-06-28 08:31:31 +10001218 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Namhyung Kim2c4193d2011-07-18 17:38:43 +10001220 if (rdev->saved_raid_disk >= first &&
NeilBrown6cce3b22006-01-06 00:20:16 -08001221 conf->mirrors[rdev->saved_raid_disk].rdev == NULL)
1222 mirror = rdev->saved_raid_disk;
1223 else
Neil Brown6c2fce22008-06-28 08:31:31 +10001224 mirror = first;
NeilBrown2bb77732011-07-27 11:00:36 +10001225 for ( ; mirror <= last ; mirror++) {
1226 mirror_info_t *p = &conf->mirrors[mirror];
1227 if (p->recovery_disabled == mddev->recovery_disabled)
1228 continue;
1229 if (!p->rdev)
1230 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
NeilBrown2bb77732011-07-27 11:00:36 +10001232 disk_stack_limits(mddev->gendisk, rdev->bdev,
1233 rdev->data_offset << 9);
1234 /* as we don't honour merge_bvec_fn, we must
1235 * never risk violating it, so limit
1236 * ->max_segments to one lying with a single
1237 * page, as a one page request is never in
1238 * violation.
1239 */
1240 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1241 blk_queue_max_segments(mddev->queue, 1);
1242 blk_queue_segment_boundary(mddev->queue,
1243 PAGE_CACHE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
1245
NeilBrown2bb77732011-07-27 11:00:36 +10001246 p->head_position = 0;
1247 rdev->raid_disk = mirror;
1248 err = 0;
1249 if (rdev->saved_raid_disk != mirror)
1250 conf->fullsync = 1;
1251 rcu_assign_pointer(p->rdev, rdev);
1252 break;
1253 }
1254
Andre Nollac5e7112009-08-03 10:59:47 +10001255 md_integrity_add_rdev(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001257 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259
1260static int raid10_remove_disk(mddev_t *mddev, int number)
1261{
1262 conf_t *conf = mddev->private;
1263 int err = 0;
1264 mdk_rdev_t *rdev;
1265 mirror_info_t *p = conf->mirrors+ number;
1266
1267 print_conf(conf);
1268 rdev = p->rdev;
1269 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08001270 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 atomic_read(&rdev->nr_pending)) {
1272 err = -EBUSY;
1273 goto abort;
1274 }
NeilBrowndfc70642008-05-23 13:04:39 -07001275 /* Only remove faulty devices in recovery
1276 * is not possible.
1277 */
1278 if (!test_bit(Faulty, &rdev->flags) &&
NeilBrown2bb77732011-07-27 11:00:36 +10001279 mddev->recovery_disabled != p->recovery_disabled &&
NeilBrown700c7212011-07-27 11:00:36 +10001280 enough(conf, -1)) {
NeilBrowndfc70642008-05-23 13:04:39 -07001281 err = -EBUSY;
1282 goto abort;
1283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07001285 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 if (atomic_read(&rdev->nr_pending)) {
1287 /* lost the race, try later */
1288 err = -EBUSY;
1289 p->rdev = rdev;
Andre Nollac5e7112009-08-03 10:59:47 +10001290 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
Martin K. Petersena91a2782011-03-17 11:11:05 +01001292 err = md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
1294abort:
1295
1296 print_conf(conf);
1297 return err;
1298}
1299
1300
NeilBrown6712ecf2007-09-27 12:47:43 +02001301static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001303 r10bio_t *r10_bio = bio->bi_private;
NeilBrown070ec552009-06-16 16:54:21 +10001304 conf_t *conf = r10_bio->mddev->private;
Namhyung Kim778ca012011-07-18 17:38:47 +10001305 int d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Namhyung Kim778ca012011-07-18 17:38:47 +10001307 d = find_bio_disk(conf, r10_bio, bio);
NeilBrown0eb3ff12006-01-06 00:20:29 -08001308
1309 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
1310 set_bit(R10BIO_Uptodate, &r10_bio->state);
NeilBrown4dbcdc72006-01-06 00:20:52 -08001311 else {
1312 atomic_add(r10_bio->sectors,
1313 &conf->mirrors[d].rdev->corrected_errors);
1314 if (!test_bit(MD_RECOVERY_SYNC, &conf->mddev->recovery))
1315 md_error(r10_bio->mddev,
1316 conf->mirrors[d].rdev);
1317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319 /* for reconstruct, we always reschedule after a read.
1320 * for resync, only after all reads
1321 */
NeilBrown73d5c382009-02-25 13:18:47 +11001322 rdev_dec_pending(conf->mirrors[d].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 if (test_bit(R10BIO_IsRecover, &r10_bio->state) ||
1324 atomic_dec_and_test(&r10_bio->remaining)) {
1325 /* we have read all the blocks,
1326 * do the comparison in process context in raid10d
1327 */
1328 reschedule_retry(r10_bio);
1329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
NeilBrown6712ecf2007-09-27 12:47:43 +02001332static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
1334 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001335 r10bio_t *r10_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 mddev_t *mddev = r10_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001337 conf_t *conf = mddev->private;
Namhyung Kim778ca012011-07-18 17:38:47 +10001338 int d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Namhyung Kim778ca012011-07-18 17:38:47 +10001340 d = find_bio_disk(conf, r10_bio, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 if (!uptodate)
1343 md_error(mddev, conf->mirrors[d].rdev);
NeilBrowndfc70642008-05-23 13:04:39 -07001344
NeilBrown73d5c382009-02-25 13:18:47 +11001345 rdev_dec_pending(conf->mirrors[d].rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 while (atomic_dec_and_test(&r10_bio->remaining)) {
1347 if (r10_bio->master_bio == NULL) {
1348 /* the primary of several recovery bios */
NeilBrown73d5c382009-02-25 13:18:47 +11001349 sector_t s = r10_bio->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 put_buf(r10_bio);
NeilBrown73d5c382009-02-25 13:18:47 +11001351 md_done_sync(mddev, s, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 break;
1353 } else {
1354 r10bio_t *r10_bio2 = (r10bio_t *)r10_bio->master_bio;
1355 put_buf(r10_bio);
1356 r10_bio = r10_bio2;
1357 }
1358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359}
1360
1361/*
1362 * Note: sync and recover and handled very differently for raid10
1363 * This code is for resync.
1364 * For resync, we read through virtual addresses and read all blocks.
1365 * If there is any error, we schedule a write. The lowest numbered
1366 * drive is authoritative.
1367 * However requests come for physical address, so we need to map.
1368 * For every physical address there are raid_disks/copies virtual addresses,
1369 * which is always are least one, but is not necessarly an integer.
1370 * This means that a physical address can span multiple chunks, so we may
1371 * have to submit multiple io requests for a single sync request.
1372 */
1373/*
1374 * We check if all blocks are in-sync and only write to blocks that
1375 * aren't in sync
1376 */
1377static void sync_request_write(mddev_t *mddev, r10bio_t *r10_bio)
1378{
NeilBrown070ec552009-06-16 16:54:21 +10001379 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 int i, first;
1381 struct bio *tbio, *fbio;
1382
1383 atomic_set(&r10_bio->remaining, 1);
1384
1385 /* find the first device with a block */
1386 for (i=0; i<conf->copies; i++)
1387 if (test_bit(BIO_UPTODATE, &r10_bio->devs[i].bio->bi_flags))
1388 break;
1389
1390 if (i == conf->copies)
1391 goto done;
1392
1393 first = i;
1394 fbio = r10_bio->devs[i].bio;
1395
1396 /* now find blocks with errors */
NeilBrown0eb3ff12006-01-06 00:20:29 -08001397 for (i=0 ; i < conf->copies ; i++) {
1398 int j, d;
1399 int vcnt = r10_bio->sectors >> (PAGE_SHIFT-9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 tbio = r10_bio->devs[i].bio;
NeilBrown0eb3ff12006-01-06 00:20:29 -08001402
1403 if (tbio->bi_end_io != end_sync_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 continue;
NeilBrown0eb3ff12006-01-06 00:20:29 -08001405 if (i == first)
1406 continue;
1407 if (test_bit(BIO_UPTODATE, &r10_bio->devs[i].bio->bi_flags)) {
1408 /* We know that the bi_io_vec layout is the same for
1409 * both 'first' and 'i', so we just compare them.
1410 * All vec entries are PAGE_SIZE;
1411 */
1412 for (j = 0; j < vcnt; j++)
1413 if (memcmp(page_address(fbio->bi_io_vec[j].bv_page),
1414 page_address(tbio->bi_io_vec[j].bv_page),
1415 PAGE_SIZE))
1416 break;
1417 if (j == vcnt)
1418 continue;
1419 mddev->resync_mismatches += r10_bio->sectors;
1420 }
NeilBrown18f08812006-01-06 00:20:25 -08001421 if (test_bit(MD_RECOVERY_CHECK, &mddev->recovery))
1422 /* Don't fix anything. */
1423 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 /* Ok, we need to write this bio
1425 * First we need to fixup bv_offset, bv_len and
1426 * bi_vecs, as the read request might have corrupted these
1427 */
1428 tbio->bi_vcnt = vcnt;
1429 tbio->bi_size = r10_bio->sectors << 9;
1430 tbio->bi_idx = 0;
1431 tbio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 tbio->bi_flags &= ~(BIO_POOL_MASK - 1);
1433 tbio->bi_flags |= 1 << BIO_UPTODATE;
1434 tbio->bi_next = NULL;
1435 tbio->bi_rw = WRITE;
1436 tbio->bi_private = r10_bio;
1437 tbio->bi_sector = r10_bio->devs[i].addr;
1438
1439 for (j=0; j < vcnt ; j++) {
1440 tbio->bi_io_vec[j].bv_offset = 0;
1441 tbio->bi_io_vec[j].bv_len = PAGE_SIZE;
1442
1443 memcpy(page_address(tbio->bi_io_vec[j].bv_page),
1444 page_address(fbio->bi_io_vec[j].bv_page),
1445 PAGE_SIZE);
1446 }
1447 tbio->bi_end_io = end_sync_write;
1448
1449 d = r10_bio->devs[i].devnum;
1450 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
1451 atomic_inc(&r10_bio->remaining);
1452 md_sync_acct(conf->mirrors[d].rdev->bdev, tbio->bi_size >> 9);
1453
1454 tbio->bi_sector += conf->mirrors[d].rdev->data_offset;
1455 tbio->bi_bdev = conf->mirrors[d].rdev->bdev;
1456 generic_make_request(tbio);
1457 }
1458
1459done:
1460 if (atomic_dec_and_test(&r10_bio->remaining)) {
1461 md_done_sync(mddev, r10_bio->sectors, 1);
1462 put_buf(r10_bio);
1463 }
1464}
1465
1466/*
1467 * Now for the recovery code.
1468 * Recovery happens across physical sectors.
1469 * We recover all non-is_sync drives by finding the virtual address of
1470 * each, and then choose a working drive that also has that virt address.
1471 * There is a separate r10_bio for each non-in_sync drive.
1472 * Only the first two slots are in use. The first for reading,
1473 * The second for writing.
1474 *
1475 */
1476
1477static void recovery_request_write(mddev_t *mddev, r10bio_t *r10_bio)
1478{
NeilBrown070ec552009-06-16 16:54:21 +10001479 conf_t *conf = mddev->private;
Namhyung Kimc65060a2011-07-18 17:38:49 +10001480 int d;
1481 struct bio *wbio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Namhyung Kimc65060a2011-07-18 17:38:49 +10001483 /*
1484 * share the pages with the first bio
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 * and submit the write request
1486 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 wbio = r10_bio->devs[1].bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 d = r10_bio->devs[1].devnum;
1489
1490 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
1491 md_sync_acct(conf->mirrors[d].rdev->bdev, wbio->bi_size >> 9);
NeilBrown0eb3ff12006-01-06 00:20:29 -08001492 if (test_bit(R10BIO_Uptodate, &r10_bio->state))
1493 generic_make_request(wbio);
NeilBrown2bb77732011-07-27 11:00:36 +10001494 else {
1495 printk(KERN_NOTICE
1496 "md/raid10:%s: recovery aborted due to read error\n",
1497 mdname(mddev));
1498 conf->mirrors[d].recovery_disabled = mddev->recovery_disabled;
1499 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
1500 bio_endio(wbio, 0);
1501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
1504
1505/*
Robert Becker1e509152009-12-14 12:49:58 +11001506 * Used by fix_read_error() to decay the per rdev read_errors.
1507 * We halve the read error count for every hour that has elapsed
1508 * since the last recorded read error.
1509 *
1510 */
1511static void check_decay_read_errors(mddev_t *mddev, mdk_rdev_t *rdev)
1512{
1513 struct timespec cur_time_mon;
1514 unsigned long hours_since_last;
1515 unsigned int read_errors = atomic_read(&rdev->read_errors);
1516
1517 ktime_get_ts(&cur_time_mon);
1518
1519 if (rdev->last_read_error.tv_sec == 0 &&
1520 rdev->last_read_error.tv_nsec == 0) {
1521 /* first time we've seen a read error */
1522 rdev->last_read_error = cur_time_mon;
1523 return;
1524 }
1525
1526 hours_since_last = (cur_time_mon.tv_sec -
1527 rdev->last_read_error.tv_sec) / 3600;
1528
1529 rdev->last_read_error = cur_time_mon;
1530
1531 /*
1532 * if hours_since_last is > the number of bits in read_errors
1533 * just set read errors to 0. We do this to avoid
1534 * overflowing the shift of read_errors by hours_since_last.
1535 */
1536 if (hours_since_last >= 8 * sizeof(read_errors))
1537 atomic_set(&rdev->read_errors, 0);
1538 else
1539 atomic_set(&rdev->read_errors, read_errors >> hours_since_last);
1540}
1541
1542/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 * This is a kernel thread which:
1544 *
1545 * 1. Retries failed read operations on working mirrors.
1546 * 2. Updates the raid superblock when problems encounter.
NeilBrown6814d532006-10-03 01:15:45 -07001547 * 3. Performs writes following reads for array synchronising.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 */
1549
NeilBrown6814d532006-10-03 01:15:45 -07001550static void fix_read_error(conf_t *conf, mddev_t *mddev, r10bio_t *r10_bio)
1551{
1552 int sect = 0; /* Offset from r10_bio->sector */
1553 int sectors = r10_bio->sectors;
1554 mdk_rdev_t*rdev;
Robert Becker1e509152009-12-14 12:49:58 +11001555 int max_read_errors = atomic_read(&mddev->max_corr_read_errors);
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10001556 int d = r10_bio->devs[r10_bio->read_slot].devnum;
Robert Becker1e509152009-12-14 12:49:58 +11001557
NeilBrown7c4e06f2011-05-11 14:53:17 +10001558 /* still own a reference to this rdev, so it cannot
1559 * have been cleared recently.
1560 */
1561 rdev = conf->mirrors[d].rdev;
Robert Becker1e509152009-12-14 12:49:58 +11001562
NeilBrown7c4e06f2011-05-11 14:53:17 +10001563 if (test_bit(Faulty, &rdev->flags))
1564 /* drive has already been failed, just ignore any
1565 more fix_read_error() attempts */
1566 return;
1567
1568 check_decay_read_errors(mddev, rdev);
1569 atomic_inc(&rdev->read_errors);
1570 if (atomic_read(&rdev->read_errors) > max_read_errors) {
1571 char b[BDEVNAME_SIZE];
Robert Becker1e509152009-12-14 12:49:58 +11001572 bdevname(rdev->bdev, b);
1573
NeilBrown7c4e06f2011-05-11 14:53:17 +10001574 printk(KERN_NOTICE
1575 "md/raid10:%s: %s: Raid device exceeded "
1576 "read_error threshold [cur %d:max %d]\n",
1577 mdname(mddev), b,
1578 atomic_read(&rdev->read_errors), max_read_errors);
1579 printk(KERN_NOTICE
1580 "md/raid10:%s: %s: Failing raid device\n",
1581 mdname(mddev), b);
1582 md_error(mddev, conf->mirrors[d].rdev);
1583 return;
Robert Becker1e509152009-12-14 12:49:58 +11001584 }
Robert Becker1e509152009-12-14 12:49:58 +11001585
NeilBrown6814d532006-10-03 01:15:45 -07001586 while(sectors) {
1587 int s = sectors;
1588 int sl = r10_bio->read_slot;
1589 int success = 0;
1590 int start;
1591
1592 if (s > (PAGE_SIZE>>9))
1593 s = PAGE_SIZE >> 9;
1594
1595 rcu_read_lock();
1596 do {
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10001597 d = r10_bio->devs[sl].devnum;
NeilBrown6814d532006-10-03 01:15:45 -07001598 rdev = rcu_dereference(conf->mirrors[d].rdev);
1599 if (rdev &&
1600 test_bit(In_sync, &rdev->flags)) {
1601 atomic_inc(&rdev->nr_pending);
1602 rcu_read_unlock();
NeilBrown2b193362010-10-27 15:16:40 +11001603 success = sync_page_io(rdev,
NeilBrown6814d532006-10-03 01:15:45 -07001604 r10_bio->devs[sl].addr +
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001605 sect,
NeilBrown6814d532006-10-03 01:15:45 -07001606 s<<9,
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001607 conf->tmppage, READ, false);
NeilBrown6814d532006-10-03 01:15:45 -07001608 rdev_dec_pending(rdev, mddev);
1609 rcu_read_lock();
1610 if (success)
1611 break;
1612 }
1613 sl++;
1614 if (sl == conf->copies)
1615 sl = 0;
1616 } while (!success && sl != r10_bio->read_slot);
1617 rcu_read_unlock();
1618
1619 if (!success) {
1620 /* Cannot read from anywhere -- bye bye array */
1621 int dn = r10_bio->devs[r10_bio->read_slot].devnum;
1622 md_error(mddev, conf->mirrors[dn].rdev);
1623 break;
1624 }
1625
1626 start = sl;
1627 /* write it back and re-read */
1628 rcu_read_lock();
1629 while (sl != r10_bio->read_slot) {
Robert Becker67b8dc42009-12-14 12:49:57 +11001630 char b[BDEVNAME_SIZE];
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10001631
NeilBrown6814d532006-10-03 01:15:45 -07001632 if (sl==0)
1633 sl = conf->copies;
1634 sl--;
1635 d = r10_bio->devs[sl].devnum;
1636 rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown1294b9c2011-07-28 11:39:23 +10001637 if (!rdev ||
1638 !test_bit(In_sync, &rdev->flags))
1639 continue;
1640
1641 atomic_inc(&rdev->nr_pending);
1642 rcu_read_unlock();
1643 if (sync_page_io(rdev,
1644 r10_bio->devs[sl].addr +
1645 sect,
1646 s<<9, conf->tmppage, WRITE, false)
1647 == 0) {
1648 /* Well, this device is dead */
1649 printk(KERN_NOTICE
1650 "md/raid10:%s: read correction "
1651 "write failed"
1652 " (%d sectors at %llu on %s)\n",
1653 mdname(mddev), s,
1654 (unsigned long long)(
1655 sect + rdev->data_offset),
1656 bdevname(rdev->bdev, b));
1657 printk(KERN_NOTICE "md/raid10:%s: %s: failing "
1658 "drive\n",
1659 mdname(mddev),
1660 bdevname(rdev->bdev, b));
1661 md_error(mddev, rdev);
NeilBrown6814d532006-10-03 01:15:45 -07001662 }
NeilBrown1294b9c2011-07-28 11:39:23 +10001663 rdev_dec_pending(rdev, mddev);
1664 rcu_read_lock();
NeilBrown6814d532006-10-03 01:15:45 -07001665 }
1666 sl = start;
1667 while (sl != r10_bio->read_slot) {
NeilBrown1294b9c2011-07-28 11:39:23 +10001668 char b[BDEVNAME_SIZE];
Prasanna S. Panchamukhi0544a212010-06-24 13:31:03 +10001669
NeilBrown6814d532006-10-03 01:15:45 -07001670 if (sl==0)
1671 sl = conf->copies;
1672 sl--;
1673 d = r10_bio->devs[sl].devnum;
1674 rdev = rcu_dereference(conf->mirrors[d].rdev);
NeilBrown1294b9c2011-07-28 11:39:23 +10001675 if (!rdev ||
1676 !test_bit(In_sync, &rdev->flags))
1677 continue;
Robert Becker67b8dc42009-12-14 12:49:57 +11001678
NeilBrown1294b9c2011-07-28 11:39:23 +10001679 atomic_inc(&rdev->nr_pending);
1680 rcu_read_unlock();
1681 if (sync_page_io(rdev,
1682 r10_bio->devs[sl].addr +
1683 sect,
1684 s<<9, conf->tmppage,
1685 READ, false) == 0) {
1686 /* Well, this device is dead */
1687 printk(KERN_NOTICE
1688 "md/raid10:%s: unable to read back "
1689 "corrected sectors"
1690 " (%d sectors at %llu on %s)\n",
1691 mdname(mddev), s,
1692 (unsigned long long)(
1693 sect + rdev->data_offset),
1694 bdevname(rdev->bdev, b));
1695 printk(KERN_NOTICE "md/raid10:%s: %s: failing "
1696 "drive\n",
1697 mdname(mddev),
1698 bdevname(rdev->bdev, b));
NeilBrown6814d532006-10-03 01:15:45 -07001699
NeilBrown1294b9c2011-07-28 11:39:23 +10001700 md_error(mddev, rdev);
1701 } else {
1702 printk(KERN_INFO
1703 "md/raid10:%s: read error corrected"
1704 " (%d sectors at %llu on %s)\n",
1705 mdname(mddev), s,
1706 (unsigned long long)(
1707 sect + rdev->data_offset),
1708 bdevname(rdev->bdev, b));
1709 atomic_add(s, &rdev->corrected_errors);
NeilBrown6814d532006-10-03 01:15:45 -07001710 }
NeilBrown1294b9c2011-07-28 11:39:23 +10001711
1712 rdev_dec_pending(rdev, mddev);
1713 rcu_read_lock();
NeilBrown6814d532006-10-03 01:15:45 -07001714 }
1715 rcu_read_unlock();
1716
1717 sectors -= s;
1718 sect += s;
1719 }
1720}
1721
NeilBrown560f8e52011-07-28 11:39:23 +10001722static void handle_read_error(mddev_t *mddev, r10bio_t *r10_bio)
1723{
1724 int slot = r10_bio->read_slot;
1725 int mirror = r10_bio->devs[slot].devnum;
1726 struct bio *bio;
1727 conf_t *conf = mddev->private;
1728 mdk_rdev_t *rdev;
1729 char b[BDEVNAME_SIZE];
1730 unsigned long do_sync;
NeilBrown856e08e2011-07-28 11:39:23 +10001731 int max_sectors;
NeilBrown560f8e52011-07-28 11:39:23 +10001732
1733 /* we got a read error. Maybe the drive is bad. Maybe just
1734 * the block and we can fix it.
1735 * We freeze all other IO, and try reading the block from
1736 * other devices. When we find one, we re-write
1737 * and check it that fixes the read error.
1738 * This is all done synchronously while the array is
1739 * frozen.
1740 */
1741 if (mddev->ro == 0) {
1742 freeze_array(conf);
1743 fix_read_error(conf, mddev, r10_bio);
1744 unfreeze_array(conf);
1745 }
1746 rdev_dec_pending(conf->mirrors[mirror].rdev, mddev);
1747
1748 bio = r10_bio->devs[slot].bio;
1749 r10_bio->devs[slot].bio =
1750 mddev->ro ? IO_BLOCKED : NULL;
NeilBrown856e08e2011-07-28 11:39:23 +10001751 mirror = read_balance(conf, r10_bio, &max_sectors);
1752 if (mirror == -1 || max_sectors < r10_bio->sectors) {
NeilBrown560f8e52011-07-28 11:39:23 +10001753 printk(KERN_ALERT "md/raid10:%s: %s: unrecoverable I/O"
1754 " read error for block %llu\n",
1755 mdname(mddev),
1756 bdevname(bio->bi_bdev, b),
1757 (unsigned long long)r10_bio->sector);
1758 raid_end_bio_io(r10_bio);
1759 bio_put(bio);
1760 return;
1761 }
1762
1763 do_sync = (r10_bio->master_bio->bi_rw & REQ_SYNC);
1764 bio_put(bio);
1765 slot = r10_bio->read_slot;
1766 rdev = conf->mirrors[mirror].rdev;
1767 printk_ratelimited(
1768 KERN_ERR
1769 "md/raid10:%s: %s: redirecting"
1770 "sector %llu to another mirror\n",
1771 mdname(mddev),
1772 bdevname(rdev->bdev, b),
1773 (unsigned long long)r10_bio->sector);
1774 bio = bio_clone_mddev(r10_bio->master_bio,
1775 GFP_NOIO, mddev);
1776 r10_bio->devs[slot].bio = bio;
1777 bio->bi_sector = r10_bio->devs[slot].addr
1778 + rdev->data_offset;
1779 bio->bi_bdev = rdev->bdev;
1780 bio->bi_rw = READ | do_sync;
1781 bio->bi_private = r10_bio;
1782 bio->bi_end_io = raid10_end_read_request;
1783 generic_make_request(bio);
1784}
1785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786static void raid10d(mddev_t *mddev)
1787{
1788 r10bio_t *r10_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 unsigned long flags;
NeilBrown070ec552009-06-16 16:54:21 +10001790 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 struct list_head *head = &conf->retry_list;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10001792 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
NeilBrowne1dfa0a2011-04-18 18:25:41 +10001796 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 for (;;) {
NeilBrowna35e63e2008-03-04 14:29:29 -08001798
Jens Axboe7eaceac2011-03-10 08:52:07 +01001799 flush_pending_writes(conf);
NeilBrowna35e63e2008-03-04 14:29:29 -08001800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08001802 if (list_empty(head)) {
NeilBrown6cce3b22006-01-06 00:20:16 -08001803 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08001805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 r10_bio = list_entry(head->prev, r10bio_t, retry_list);
1807 list_del(head->prev);
NeilBrown4443ae12006-01-06 00:20:28 -08001808 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 spin_unlock_irqrestore(&conf->device_lock, flags);
1810
1811 mddev = r10_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001812 conf = mddev->private;
Jens Axboe7eaceac2011-03-10 08:52:07 +01001813 if (test_bit(R10BIO_IsSync, &r10_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 sync_request_write(mddev, r10_bio);
Jens Axboe7eaceac2011-03-10 08:52:07 +01001815 else if (test_bit(R10BIO_IsRecover, &r10_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 recovery_request_write(mddev, r10_bio);
NeilBrown856e08e2011-07-28 11:39:23 +10001817 else if (test_bit(R10BIO_ReadError, &r10_bio->state))
NeilBrown560f8e52011-07-28 11:39:23 +10001818 handle_read_error(mddev, r10_bio);
NeilBrown856e08e2011-07-28 11:39:23 +10001819 else {
1820 /* just a partial read to be scheduled from a
1821 * separate context
1822 */
1823 int slot = r10_bio->read_slot;
1824 generic_make_request(r10_bio->devs[slot].bio);
1825 }
NeilBrown4443ae12006-01-06 00:20:28 -08001826
NeilBrown1d9d5242009-10-16 15:55:32 +11001827 cond_resched();
NeilBrownde393cd2011-07-28 11:31:48 +10001828 if (mddev->flags & ~(1<<MD_CHANGE_PENDING))
1829 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 }
NeilBrowne1dfa0a2011-04-18 18:25:41 +10001831 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833
1834
1835static int init_resync(conf_t *conf)
1836{
1837 int buffs;
1838
1839 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhennb6385482006-04-02 13:34:29 +02001840 BUG_ON(conf->r10buf_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 conf->r10buf_pool = mempool_create(buffs, r10buf_pool_alloc, r10buf_pool_free, conf);
1842 if (!conf->r10buf_pool)
1843 return -ENOMEM;
1844 conf->next_resync = 0;
1845 return 0;
1846}
1847
1848/*
1849 * perform a "sync" on one "block"
1850 *
1851 * We need to make sure that no normal I/O request - particularly write
1852 * requests - conflict with active sync requests.
1853 *
1854 * This is achieved by tracking pending requests and a 'barrier' concept
1855 * that can be installed to exclude normal IO requests.
1856 *
1857 * Resync and recovery are handled very differently.
1858 * We differentiate by looking at MD_RECOVERY_SYNC in mddev->recovery.
1859 *
1860 * For resync, we iterate over virtual addresses, read all copies,
1861 * and update if there are differences. If only one copy is live,
1862 * skip it.
1863 * For recovery, we iterate over physical addresses, read a good
1864 * value for each non-in_sync drive, and over-write.
1865 *
1866 * So, for recovery we may have several outstanding complex requests for a
1867 * given address, one for each out-of-sync device. We model this by allocating
1868 * a number of r10_bio structures, one for each out-of-sync device.
1869 * As we setup these structures, we collect all bio's together into a list
1870 * which we then process collectively to add pages, and then process again
1871 * to pass to generic_make_request.
1872 *
1873 * The r10_bio structures are linked using a borrowed master_bio pointer.
1874 * This link is counted in ->remaining. When the r10_bio that points to NULL
1875 * has its remaining count decremented to 0, the whole complex operation
1876 * is complete.
1877 *
1878 */
1879
NeilBrownab9d47e2011-05-11 14:54:41 +10001880static sector_t sync_request(mddev_t *mddev, sector_t sector_nr,
1881 int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
NeilBrown070ec552009-06-16 16:54:21 +10001883 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 r10bio_t *r10_bio;
1885 struct bio *biolist = NULL, *bio;
1886 sector_t max_sector, nr_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 int i;
NeilBrown6cce3b22006-01-06 00:20:16 -08001888 int max_sync;
NeilBrown57dab0b2010-10-19 10:03:39 +11001889 sector_t sync_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
1891 sector_t sectors_skipped = 0;
1892 int chunks_skipped = 0;
1893
1894 if (!conf->r10buf_pool)
1895 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07001896 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898 skipped:
Andre Noll58c0fed2009-03-31 14:33:13 +11001899 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery))
1901 max_sector = mddev->resync_max_sectors;
1902 if (sector_nr >= max_sector) {
NeilBrown6cce3b22006-01-06 00:20:16 -08001903 /* If we aborted, we need to abort the
1904 * sync on the 'current' bitmap chucks (there can
1905 * be several when recovering multiple devices).
1906 * as we may have started syncing it but not finished.
1907 * We can find the current address in
1908 * mddev->curr_resync, but for recovery,
1909 * we need to convert that to several
1910 * virtual addresses.
1911 */
1912 if (mddev->curr_resync < max_sector) { /* aborted */
1913 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery))
1914 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
1915 &sync_blocks, 1);
1916 else for (i=0; i<conf->raid_disks; i++) {
1917 sector_t sect =
1918 raid10_find_virt(conf, mddev->curr_resync, i);
1919 bitmap_end_sync(mddev->bitmap, sect,
1920 &sync_blocks, 1);
1921 }
1922 } else /* completed sync */
1923 conf->fullsync = 0;
1924
1925 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 close_sync(conf);
NeilBrown57afd892005-06-21 17:17:13 -07001927 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 return sectors_skipped;
1929 }
1930 if (chunks_skipped >= conf->raid_disks) {
1931 /* if there has been nothing to do on any drive,
1932 * then there is nothing to do at all..
1933 */
NeilBrown57afd892005-06-21 17:17:13 -07001934 *skipped = 1;
1935 return (max_sector - sector_nr) + sectors_skipped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 }
1937
NeilBrownc6207272008-02-06 01:39:52 -08001938 if (max_sector > mddev->resync_max)
1939 max_sector = mddev->resync_max; /* Don't do IO beyond here */
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 /* make sure whole request will fit in a chunk - if chunks
1942 * are meaningful
1943 */
1944 if (conf->near_copies < conf->raid_disks &&
1945 max_sector > (sector_nr | conf->chunk_mask))
1946 max_sector = (sector_nr | conf->chunk_mask) + 1;
1947 /*
1948 * If there is non-resync activity waiting for us then
1949 * put in a delay to throttle resync.
1950 */
NeilBrown0a27ec92006-01-06 00:20:13 -08001951 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 msleep_interruptible(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954 /* Again, very different code for resync and recovery.
1955 * Both must result in an r10bio with a list of bios that
1956 * have bi_end_io, bi_sector, bi_bdev set,
1957 * and bi_private set to the r10bio.
1958 * For recovery, we may actually create several r10bios
1959 * with 2 bios in each, that correspond to the bios in the main one.
1960 * In this case, the subordinate r10bios link back through a
1961 * borrowed master_bio pointer, and the counter in the master
1962 * includes a ref from each subordinate.
1963 */
1964 /* First, we decide what to do and set ->bi_end_io
1965 * To end_sync_read if we want to read, and
1966 * end_sync_write if we will want to write.
1967 */
1968
NeilBrown6cce3b22006-01-06 00:20:16 -08001969 max_sync = RESYNC_PAGES << (PAGE_SHIFT-9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 if (!test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
1971 /* recovery... the complicated one */
NeilBrowna9f326e2009-09-23 18:06:41 +10001972 int j, k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 r10_bio = NULL;
1974
NeilBrownab9d47e2011-05-11 14:54:41 +10001975 for (i=0 ; i<conf->raid_disks; i++) {
1976 int still_degraded;
1977 r10bio_t *rb2;
1978 sector_t sect;
1979 int must_sync;
1980
1981 if (conf->mirrors[i].rdev == NULL ||
1982 test_bit(In_sync, &conf->mirrors[i].rdev->flags))
1983 continue;
1984
1985 still_degraded = 0;
1986 /* want to reconstruct this device */
1987 rb2 = r10_bio;
1988 sect = raid10_find_virt(conf, sector_nr, i);
1989 /* Unless we are doing a full sync, we only need
1990 * to recover the block if it is set in the bitmap
1991 */
1992 must_sync = bitmap_start_sync(mddev->bitmap, sect,
1993 &sync_blocks, 1);
1994 if (sync_blocks < max_sync)
1995 max_sync = sync_blocks;
1996 if (!must_sync &&
1997 !conf->fullsync) {
1998 /* yep, skip the sync_blocks here, but don't assume
1999 * that there will never be anything to do here
NeilBrown6cce3b22006-01-06 00:20:16 -08002000 */
NeilBrownab9d47e2011-05-11 14:54:41 +10002001 chunks_skipped = -1;
2002 continue;
2003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
NeilBrownab9d47e2011-05-11 14:54:41 +10002005 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
2006 raise_barrier(conf, rb2 != NULL);
2007 atomic_set(&r10_bio->remaining, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
NeilBrownab9d47e2011-05-11 14:54:41 +10002009 r10_bio->master_bio = (struct bio*)rb2;
2010 if (rb2)
2011 atomic_inc(&rb2->remaining);
2012 r10_bio->mddev = mddev;
2013 set_bit(R10BIO_IsRecover, &r10_bio->state);
2014 r10_bio->sector = sect;
NeilBrown6cce3b22006-01-06 00:20:16 -08002015
NeilBrownab9d47e2011-05-11 14:54:41 +10002016 raid10_find_phys(conf, r10_bio);
NeilBrown18055562009-05-07 12:48:10 +10002017
NeilBrownab9d47e2011-05-11 14:54:41 +10002018 /* Need to check if the array will still be
2019 * degraded
2020 */
2021 for (j=0; j<conf->raid_disks; j++)
2022 if (conf->mirrors[j].rdev == NULL ||
2023 test_bit(Faulty, &conf->mirrors[j].rdev->flags)) {
2024 still_degraded = 1;
NeilBrown87fc7672005-09-09 16:24:04 -07002025 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 }
NeilBrownab9d47e2011-05-11 14:54:41 +10002027
2028 must_sync = bitmap_start_sync(mddev->bitmap, sect,
2029 &sync_blocks, still_degraded);
2030
2031 for (j=0; j<conf->copies;j++) {
2032 int d = r10_bio->devs[j].devnum;
2033 if (!conf->mirrors[d].rdev ||
2034 !test_bit(In_sync, &conf->mirrors[d].rdev->flags))
2035 continue;
2036 /* This is where we read from */
2037 bio = r10_bio->devs[0].bio;
2038 bio->bi_next = biolist;
2039 biolist = bio;
2040 bio->bi_private = r10_bio;
2041 bio->bi_end_io = end_sync_read;
2042 bio->bi_rw = READ;
2043 bio->bi_sector = r10_bio->devs[j].addr +
2044 conf->mirrors[d].rdev->data_offset;
2045 bio->bi_bdev = conf->mirrors[d].rdev->bdev;
2046 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
2047 atomic_inc(&r10_bio->remaining);
2048 /* and we write to 'i' */
2049
2050 for (k=0; k<conf->copies; k++)
2051 if (r10_bio->devs[k].devnum == i)
2052 break;
2053 BUG_ON(k == conf->copies);
2054 bio = r10_bio->devs[1].bio;
2055 bio->bi_next = biolist;
2056 biolist = bio;
2057 bio->bi_private = r10_bio;
2058 bio->bi_end_io = end_sync_write;
2059 bio->bi_rw = WRITE;
2060 bio->bi_sector = r10_bio->devs[k].addr +
2061 conf->mirrors[i].rdev->data_offset;
2062 bio->bi_bdev = conf->mirrors[i].rdev->bdev;
2063
2064 r10_bio->devs[0].devnum = d;
2065 r10_bio->devs[1].devnum = i;
2066
2067 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 }
NeilBrownab9d47e2011-05-11 14:54:41 +10002069 if (j == conf->copies) {
2070 /* Cannot recover, so abort the recovery */
2071 put_buf(r10_bio);
2072 if (rb2)
2073 atomic_dec(&rb2->remaining);
2074 r10_bio = rb2;
2075 if (!test_and_set_bit(MD_RECOVERY_INTR,
2076 &mddev->recovery))
2077 printk(KERN_INFO "md/raid10:%s: insufficient "
2078 "working devices for recovery.\n",
2079 mdname(mddev));
2080 break;
2081 }
2082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 if (biolist == NULL) {
2084 while (r10_bio) {
2085 r10bio_t *rb2 = r10_bio;
2086 r10_bio = (r10bio_t*) rb2->master_bio;
2087 rb2->master_bio = NULL;
2088 put_buf(rb2);
2089 }
2090 goto giveup;
2091 }
2092 } else {
2093 /* resync. Schedule a read for every block at this virt offset */
2094 int count = 0;
NeilBrown6cce3b22006-01-06 00:20:16 -08002095
NeilBrown78200d42009-02-25 13:18:47 +11002096 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
2097
NeilBrown6cce3b22006-01-06 00:20:16 -08002098 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
2099 &sync_blocks, mddev->degraded) &&
NeilBrownab9d47e2011-05-11 14:54:41 +10002100 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED,
2101 &mddev->recovery)) {
NeilBrown6cce3b22006-01-06 00:20:16 -08002102 /* We can skip this block */
2103 *skipped = 1;
2104 return sync_blocks + sectors_skipped;
2105 }
2106 if (sync_blocks < max_sync)
2107 max_sync = sync_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 r10_bio = mempool_alloc(conf->r10buf_pool, GFP_NOIO);
2109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 r10_bio->mddev = mddev;
2111 atomic_set(&r10_bio->remaining, 0);
NeilBrown6cce3b22006-01-06 00:20:16 -08002112 raise_barrier(conf, 0);
2113 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115 r10_bio->master_bio = NULL;
2116 r10_bio->sector = sector_nr;
2117 set_bit(R10BIO_IsSync, &r10_bio->state);
2118 raid10_find_phys(conf, r10_bio);
2119 r10_bio->sectors = (sector_nr | conf->chunk_mask) - sector_nr +1;
2120
2121 for (i=0; i<conf->copies; i++) {
2122 int d = r10_bio->devs[i].devnum;
2123 bio = r10_bio->devs[i].bio;
2124 bio->bi_end_io = NULL;
NeilBrownaf03b8e2007-06-16 10:16:06 -07002125 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 if (conf->mirrors[d].rdev == NULL ||
NeilBrownb2d444d2005-11-08 21:39:31 -08002127 test_bit(Faulty, &conf->mirrors[d].rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 continue;
2129 atomic_inc(&conf->mirrors[d].rdev->nr_pending);
2130 atomic_inc(&r10_bio->remaining);
2131 bio->bi_next = biolist;
2132 biolist = bio;
2133 bio->bi_private = r10_bio;
2134 bio->bi_end_io = end_sync_read;
NeilBrown802ba062006-12-13 00:34:13 -08002135 bio->bi_rw = READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 bio->bi_sector = r10_bio->devs[i].addr +
2137 conf->mirrors[d].rdev->data_offset;
2138 bio->bi_bdev = conf->mirrors[d].rdev->bdev;
2139 count++;
2140 }
2141
2142 if (count < 2) {
2143 for (i=0; i<conf->copies; i++) {
2144 int d = r10_bio->devs[i].devnum;
2145 if (r10_bio->devs[i].bio->bi_end_io)
NeilBrownab9d47e2011-05-11 14:54:41 +10002146 rdev_dec_pending(conf->mirrors[d].rdev,
2147 mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 }
2149 put_buf(r10_bio);
2150 biolist = NULL;
2151 goto giveup;
2152 }
2153 }
2154
2155 for (bio = biolist; bio ; bio=bio->bi_next) {
2156
2157 bio->bi_flags &= ~(BIO_POOL_MASK - 1);
2158 if (bio->bi_end_io)
2159 bio->bi_flags |= 1 << BIO_UPTODATE;
2160 bio->bi_vcnt = 0;
2161 bio->bi_idx = 0;
2162 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 bio->bi_size = 0;
2164 }
2165
2166 nr_sectors = 0;
NeilBrown6cce3b22006-01-06 00:20:16 -08002167 if (sector_nr + max_sync < max_sector)
2168 max_sector = sector_nr + max_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 do {
2170 struct page *page;
2171 int len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 if (sector_nr + (len>>9) > max_sector)
2173 len = (max_sector - sector_nr) << 9;
2174 if (len == 0)
2175 break;
2176 for (bio= biolist ; bio ; bio=bio->bi_next) {
NeilBrownab9d47e2011-05-11 14:54:41 +10002177 struct bio *bio2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
NeilBrownab9d47e2011-05-11 14:54:41 +10002179 if (bio_add_page(bio, page, len, 0))
2180 continue;
2181
2182 /* stop here */
2183 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
2184 for (bio2 = biolist;
2185 bio2 && bio2 != bio;
2186 bio2 = bio2->bi_next) {
2187 /* remove last page from this bio */
2188 bio2->bi_vcnt--;
2189 bio2->bi_size -= len;
2190 bio2->bi_flags &= ~(1<< BIO_SEG_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 }
NeilBrownab9d47e2011-05-11 14:54:41 +10002192 goto bio_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 }
2194 nr_sectors += len>>9;
2195 sector_nr += len>>9;
2196 } while (biolist->bi_vcnt < RESYNC_PAGES);
2197 bio_full:
2198 r10_bio->sectors = nr_sectors;
2199
2200 while (biolist) {
2201 bio = biolist;
2202 biolist = biolist->bi_next;
2203
2204 bio->bi_next = NULL;
2205 r10_bio = bio->bi_private;
2206 r10_bio->sectors = nr_sectors;
2207
2208 if (bio->bi_end_io == end_sync_read) {
2209 md_sync_acct(bio->bi_bdev, nr_sectors);
2210 generic_make_request(bio);
2211 }
2212 }
2213
NeilBrown57afd892005-06-21 17:17:13 -07002214 if (sectors_skipped)
2215 /* pretend they weren't skipped, it makes
2216 * no important difference in this case
2217 */
2218 md_done_sync(mddev, sectors_skipped, 1);
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 return sectors_skipped + nr_sectors;
2221 giveup:
2222 /* There is nowhere to write, so all non-sync
2223 * drives must be failed, so try the next chunk...
2224 */
NeilBrown09b40682009-02-25 13:18:47 +11002225 if (sector_nr + max_sync < max_sector)
2226 max_sector = sector_nr + max_sync;
2227
2228 sectors_skipped += (max_sector - sector_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 chunks_skipped ++;
2230 sector_nr = max_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 goto skipped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232}
2233
Dan Williams80c3a6c2009-03-17 18:10:40 -07002234static sector_t
2235raid10_size(mddev_t *mddev, sector_t sectors, int raid_disks)
2236{
2237 sector_t size;
NeilBrown070ec552009-06-16 16:54:21 +10002238 conf_t *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07002239
2240 if (!raid_disks)
NeilBrown84707f32010-03-16 17:23:35 +11002241 raid_disks = conf->raid_disks;
Dan Williams80c3a6c2009-03-17 18:10:40 -07002242 if (!sectors)
Trela, Maciejdab8b292010-03-08 16:02:45 +11002243 sectors = conf->dev_sectors;
Dan Williams80c3a6c2009-03-17 18:10:40 -07002244
2245 size = sectors >> conf->chunk_shift;
2246 sector_div(size, conf->far_copies);
2247 size = size * raid_disks;
2248 sector_div(size, conf->near_copies);
2249
2250 return size << conf->chunk_shift;
2251}
2252
Trela, Maciejdab8b292010-03-08 16:02:45 +11002253
2254static conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255{
Trela, Maciejdab8b292010-03-08 16:02:45 +11002256 conf_t *conf = NULL;
NeilBrownc93983b2006-06-26 00:27:41 -07002257 int nc, fc, fo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 sector_t stride, size;
Trela, Maciejdab8b292010-03-08 16:02:45 +11002259 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Maciej Trelaf73ea872010-06-16 11:46:29 +01002261 if (mddev->new_chunk_sectors < (PAGE_SIZE >> 9) ||
2262 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown128595e2010-05-03 14:47:14 +10002263 printk(KERN_ERR "md/raid10:%s: chunk size must be "
2264 "at least PAGE_SIZE(%ld) and be a power of 2.\n",
2265 mdname(mddev), PAGE_SIZE);
Trela, Maciejdab8b292010-03-08 16:02:45 +11002266 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 }
NeilBrown2604b702006-01-06 00:20:36 -08002268
Maciej Trelaf73ea872010-06-16 11:46:29 +01002269 nc = mddev->new_layout & 255;
2270 fc = (mddev->new_layout >> 8) & 255;
2271 fo = mddev->new_layout & (1<<16);
Trela, Maciejdab8b292010-03-08 16:02:45 +11002272
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 if ((nc*fc) <2 || (nc*fc) > mddev->raid_disks ||
Maciej Trelaf73ea872010-06-16 11:46:29 +01002274 (mddev->new_layout >> 17)) {
NeilBrown128595e2010-05-03 14:47:14 +10002275 printk(KERN_ERR "md/raid10:%s: unsupported raid10 layout: 0x%8x\n",
Maciej Trelaf73ea872010-06-16 11:46:29 +01002276 mdname(mddev), mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 goto out;
2278 }
Trela, Maciejdab8b292010-03-08 16:02:45 +11002279
2280 err = -ENOMEM;
NeilBrown4443ae12006-01-06 00:20:28 -08002281 conf = kzalloc(sizeof(conf_t), GFP_KERNEL);
Trela, Maciejdab8b292010-03-08 16:02:45 +11002282 if (!conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 goto out;
Trela, Maciejdab8b292010-03-08 16:02:45 +11002284
NeilBrown4443ae12006-01-06 00:20:28 -08002285 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Trela, Maciejdab8b292010-03-08 16:02:45 +11002286 GFP_KERNEL);
2287 if (!conf->mirrors)
2288 goto out;
NeilBrown4443ae12006-01-06 00:20:28 -08002289
2290 conf->tmppage = alloc_page(GFP_KERNEL);
2291 if (!conf->tmppage)
Trela, Maciejdab8b292010-03-08 16:02:45 +11002292 goto out;
2293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
NeilBrown64a742b2007-02-28 20:11:18 -08002295 conf->raid_disks = mddev->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 conf->near_copies = nc;
2297 conf->far_copies = fc;
2298 conf->copies = nc*fc;
NeilBrownc93983b2006-06-26 00:27:41 -07002299 conf->far_offset = fo;
Trela, Maciejdab8b292010-03-08 16:02:45 +11002300 conf->chunk_mask = mddev->new_chunk_sectors - 1;
2301 conf->chunk_shift = ffz(~mddev->new_chunk_sectors);
2302
2303 conf->r10bio_pool = mempool_create(NR_RAID10_BIOS, r10bio_pool_alloc,
2304 r10bio_pool_free, conf);
2305 if (!conf->r10bio_pool)
2306 goto out;
2307
Andre Noll58c0fed2009-03-31 14:33:13 +11002308 size = mddev->dev_sectors >> conf->chunk_shift;
NeilBrown64a742b2007-02-28 20:11:18 -08002309 sector_div(size, fc);
2310 size = size * conf->raid_disks;
2311 sector_div(size, nc);
2312 /* 'size' is now the number of chunks in the array */
2313 /* calculate "used chunks per device" in 'stride' */
2314 stride = size * conf->copies;
NeilBrownaf03b8e2007-06-16 10:16:06 -07002315
2316 /* We need to round up when dividing by raid_disks to
2317 * get the stride size.
2318 */
2319 stride += conf->raid_disks - 1;
NeilBrown64a742b2007-02-28 20:11:18 -08002320 sector_div(stride, conf->raid_disks);
Trela, Maciejdab8b292010-03-08 16:02:45 +11002321
2322 conf->dev_sectors = stride << conf->chunk_shift;
NeilBrown64a742b2007-02-28 20:11:18 -08002323
NeilBrownc93983b2006-06-26 00:27:41 -07002324 if (fo)
NeilBrown64a742b2007-02-28 20:11:18 -08002325 stride = 1;
2326 else
NeilBrownc93983b2006-06-26 00:27:41 -07002327 sector_div(stride, fc);
NeilBrown64a742b2007-02-28 20:11:18 -08002328 conf->stride = stride << conf->chunk_shift;
2329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Neil Browne7e72bf2008-05-14 16:05:54 -07002331 spin_lock_init(&conf->device_lock);
Trela, Maciejdab8b292010-03-08 16:02:45 +11002332 INIT_LIST_HEAD(&conf->retry_list);
2333
2334 spin_lock_init(&conf->resync_lock);
2335 init_waitqueue_head(&conf->wait_barrier);
2336
2337 conf->thread = md_register_thread(raid10d, mddev, NULL);
2338 if (!conf->thread)
2339 goto out;
2340
Trela, Maciejdab8b292010-03-08 16:02:45 +11002341 conf->mddev = mddev;
2342 return conf;
2343
2344 out:
NeilBrown128595e2010-05-03 14:47:14 +10002345 printk(KERN_ERR "md/raid10:%s: couldn't allocate memory.\n",
Trela, Maciejdab8b292010-03-08 16:02:45 +11002346 mdname(mddev));
2347 if (conf) {
2348 if (conf->r10bio_pool)
2349 mempool_destroy(conf->r10bio_pool);
2350 kfree(conf->mirrors);
2351 safe_put_page(conf->tmppage);
2352 kfree(conf);
2353 }
2354 return ERR_PTR(err);
2355}
2356
2357static int run(mddev_t *mddev)
2358{
2359 conf_t *conf;
2360 int i, disk_idx, chunk_size;
2361 mirror_info_t *disk;
2362 mdk_rdev_t *rdev;
2363 sector_t size;
2364
2365 /*
2366 * copy the already verified devices into our private RAID10
2367 * bookkeeping area. [whatever we allocate in run(),
2368 * should be freed in stop()]
2369 */
2370
2371 if (mddev->private == NULL) {
2372 conf = setup_conf(mddev);
2373 if (IS_ERR(conf))
2374 return PTR_ERR(conf);
2375 mddev->private = conf;
2376 }
2377 conf = mddev->private;
2378 if (!conf)
2379 goto out;
2380
Trela, Maciejdab8b292010-03-08 16:02:45 +11002381 mddev->thread = conf->thread;
2382 conf->thread = NULL;
2383
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10002384 chunk_size = mddev->chunk_sectors << 9;
2385 blk_queue_io_min(mddev->queue, chunk_size);
2386 if (conf->raid_disks % conf->near_copies)
2387 blk_queue_io_opt(mddev->queue, chunk_size * conf->raid_disks);
2388 else
2389 blk_queue_io_opt(mddev->queue, chunk_size *
2390 (conf->raid_disks / conf->near_copies));
2391
Cheng Renquan159ec1f2009-01-09 08:31:08 +11002392 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrown34b343c2011-07-28 11:31:47 +10002393
2394 if (rdev->badblocks.count) {
2395 printk(KERN_ERR "md/raid10: cannot handle bad blocks yet\n");
2396 goto out_free_conf;
2397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 disk_idx = rdev->raid_disk;
NeilBrown84707f32010-03-16 17:23:35 +11002399 if (disk_idx >= conf->raid_disks
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 || disk_idx < 0)
2401 continue;
2402 disk = conf->mirrors + disk_idx;
2403
2404 disk->rdev = rdev;
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10002405 disk_stack_limits(mddev->gendisk, rdev->bdev,
2406 rdev->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 /* as we don't honour merge_bvec_fn, we must never risk
NeilBrown627a2d32010-03-08 16:44:38 +11002408 * violating it, so limit max_segments to 1 lying
2409 * within a single page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 */
NeilBrown627a2d32010-03-08 16:44:38 +11002411 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
2412 blk_queue_max_segments(mddev->queue, 1);
2413 blk_queue_segment_boundary(mddev->queue,
2414 PAGE_CACHE_SIZE - 1);
2415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
2417 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 }
NeilBrown6d508242005-09-09 16:24:03 -07002419 /* need to check that every block has at least one working mirror */
NeilBrown700c7212011-07-27 11:00:36 +10002420 if (!enough(conf, -1)) {
NeilBrown128595e2010-05-03 14:47:14 +10002421 printk(KERN_ERR "md/raid10:%s: not enough operational mirrors.\n",
NeilBrown6d508242005-09-09 16:24:03 -07002422 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 goto out_free_conf;
2424 }
2425
2426 mddev->degraded = 0;
2427 for (i = 0; i < conf->raid_disks; i++) {
2428
2429 disk = conf->mirrors + i;
2430
NeilBrown5fd6c1d2006-06-26 00:27:40 -07002431 if (!disk->rdev ||
NeilBrown2e333e82006-10-21 10:24:07 -07002432 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 disk->head_position = 0;
2434 mddev->degraded++;
Neil Brown8c2e8702008-06-28 08:30:52 +10002435 if (disk->rdev)
2436 conf->fullsync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 }
2438 }
2439
Andre Noll8c6ac862009-06-18 08:48:06 +10002440 if (mddev->recovery_cp != MaxSector)
NeilBrown128595e2010-05-03 14:47:14 +10002441 printk(KERN_NOTICE "md/raid10:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10002442 " -- starting background reconstruction\n",
2443 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 printk(KERN_INFO
NeilBrown128595e2010-05-03 14:47:14 +10002445 "md/raid10:%s: active with %d out of %d devices\n",
NeilBrown84707f32010-03-16 17:23:35 +11002446 mdname(mddev), conf->raid_disks - mddev->degraded,
2447 conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 /*
2449 * Ok, everything is just fine now
2450 */
Trela, Maciejdab8b292010-03-08 16:02:45 +11002451 mddev->dev_sectors = conf->dev_sectors;
2452 size = raid10_size(mddev, 0, 0);
2453 md_set_array_sectors(mddev, size);
2454 mddev->resync_max_sectors = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
NeilBrown0d129222006-10-03 01:15:54 -07002456 mddev->queue->backing_dev_info.congested_fn = raid10_congested;
2457 mddev->queue->backing_dev_info.congested_data = mddev;
NeilBrown7a5febe2005-05-16 21:53:16 -07002458
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 /* Calculate max read-ahead size.
2460 * We need to readahead at least twice a whole stripe....
2461 * maybe...
2462 */
2463 {
Andre Noll9d8f0362009-06-18 08:45:01 +10002464 int stripe = conf->raid_disks *
2465 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 stripe /= conf->near_copies;
2467 if (mddev->queue->backing_dev_info.ra_pages < 2* stripe)
2468 mddev->queue->backing_dev_info.ra_pages = 2* stripe;
2469 }
2470
NeilBrown84707f32010-03-16 17:23:35 +11002471 if (conf->near_copies < conf->raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 blk_queue_merge_bvec(mddev->queue, raid10_mergeable_bvec);
Martin K. Petersena91a2782011-03-17 11:11:05 +01002473
2474 if (md_integrity_register(mddev))
2475 goto out_free_conf;
2476
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 return 0;
2478
2479out_free_conf:
NeilBrown589a5942010-12-09 17:02:14 +11002480 md_unregister_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 if (conf->r10bio_pool)
2482 mempool_destroy(conf->r10bio_pool);
NeilBrown1345b1d2006-01-06 00:20:40 -08002483 safe_put_page(conf->tmppage);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002484 kfree(conf->mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 kfree(conf);
2486 mddev->private = NULL;
2487out:
2488 return -EIO;
2489}
2490
2491static int stop(mddev_t *mddev)
2492{
NeilBrown070ec552009-06-16 16:54:21 +10002493 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
NeilBrown409c57f2009-03-31 14:39:39 +11002495 raise_barrier(conf, 0);
2496 lower_barrier(conf);
2497
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 md_unregister_thread(mddev->thread);
2499 mddev->thread = NULL;
2500 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
2501 if (conf->r10bio_pool)
2502 mempool_destroy(conf->r10bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002503 kfree(conf->mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 kfree(conf);
2505 mddev->private = NULL;
2506 return 0;
2507}
2508
NeilBrown6cce3b22006-01-06 00:20:16 -08002509static void raid10_quiesce(mddev_t *mddev, int state)
2510{
NeilBrown070ec552009-06-16 16:54:21 +10002511 conf_t *conf = mddev->private;
NeilBrown6cce3b22006-01-06 00:20:16 -08002512
2513 switch(state) {
2514 case 1:
2515 raise_barrier(conf, 0);
2516 break;
2517 case 0:
2518 lower_barrier(conf);
2519 break;
2520 }
NeilBrown6cce3b22006-01-06 00:20:16 -08002521}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Trela, Maciejdab8b292010-03-08 16:02:45 +11002523static void *raid10_takeover_raid0(mddev_t *mddev)
2524{
2525 mdk_rdev_t *rdev;
2526 conf_t *conf;
2527
2528 if (mddev->degraded > 0) {
NeilBrown128595e2010-05-03 14:47:14 +10002529 printk(KERN_ERR "md/raid10:%s: Error: degraded raid0!\n",
2530 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11002531 return ERR_PTR(-EINVAL);
2532 }
2533
Trela, Maciejdab8b292010-03-08 16:02:45 +11002534 /* Set new parameters */
2535 mddev->new_level = 10;
2536 /* new layout: far_copies = 1, near_copies = 2 */
2537 mddev->new_layout = (1<<8) + 2;
2538 mddev->new_chunk_sectors = mddev->chunk_sectors;
2539 mddev->delta_disks = mddev->raid_disks;
Trela, Maciejdab8b292010-03-08 16:02:45 +11002540 mddev->raid_disks *= 2;
2541 /* make sure it will be not marked as dirty */
2542 mddev->recovery_cp = MaxSector;
2543
2544 conf = setup_conf(mddev);
Krzysztof Wojcik02214dc2011-02-04 14:18:26 +01002545 if (!IS_ERR(conf)) {
NeilBrowne93f68a2010-06-15 09:36:03 +01002546 list_for_each_entry(rdev, &mddev->disks, same_set)
2547 if (rdev->raid_disk >= 0)
2548 rdev->new_raid_disk = rdev->raid_disk * 2;
Krzysztof Wojcik02214dc2011-02-04 14:18:26 +01002549 conf->barrier = 1;
2550 }
2551
Trela, Maciejdab8b292010-03-08 16:02:45 +11002552 return conf;
2553}
2554
2555static void *raid10_takeover(mddev_t *mddev)
2556{
2557 struct raid0_private_data *raid0_priv;
2558
2559 /* raid10 can take over:
2560 * raid0 - providing it has only two drives
2561 */
2562 if (mddev->level == 0) {
2563 /* for raid0 takeover only one zone is supported */
2564 raid0_priv = mddev->private;
2565 if (raid0_priv->nr_strip_zones > 1) {
NeilBrown128595e2010-05-03 14:47:14 +10002566 printk(KERN_ERR "md/raid10:%s: cannot takeover raid 0"
2567 " with more than one zone.\n",
2568 mdname(mddev));
Trela, Maciejdab8b292010-03-08 16:02:45 +11002569 return ERR_PTR(-EINVAL);
2570 }
2571 return raid10_takeover_raid0(mddev);
2572 }
2573 return ERR_PTR(-EINVAL);
2574}
2575
NeilBrown2604b702006-01-06 00:20:36 -08002576static struct mdk_personality raid10_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577{
2578 .name = "raid10",
NeilBrown2604b702006-01-06 00:20:36 -08002579 .level = 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 .owner = THIS_MODULE,
2581 .make_request = make_request,
2582 .run = run,
2583 .stop = stop,
2584 .status = status,
2585 .error_handler = error,
2586 .hot_add_disk = raid10_add_disk,
2587 .hot_remove_disk= raid10_remove_disk,
2588 .spare_active = raid10_spare_active,
2589 .sync_request = sync_request,
NeilBrown6cce3b22006-01-06 00:20:16 -08002590 .quiesce = raid10_quiesce,
Dan Williams80c3a6c2009-03-17 18:10:40 -07002591 .size = raid10_size,
Trela, Maciejdab8b292010-03-08 16:02:45 +11002592 .takeover = raid10_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593};
2594
2595static int __init raid_init(void)
2596{
NeilBrown2604b702006-01-06 00:20:36 -08002597 return register_md_personality(&raid10_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598}
2599
2600static void raid_exit(void)
2601{
NeilBrown2604b702006-01-06 00:20:36 -08002602 unregister_md_personality(&raid10_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603}
2604
2605module_init(raid_init);
2606module_exit(raid_exit);
2607MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11002608MODULE_DESCRIPTION("RAID10 (striped mirror) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609MODULE_ALIAS("md-personality-9"); /* RAID10 */
NeilBrownd9d166c2006-01-06 00:20:51 -08002610MODULE_ALIAS("md-raid10");
NeilBrown2604b702006-01-06 00:20:36 -08002611MODULE_ALIAS("md-level-10");