md/raid1: fix read balance when a drive is write-mostly.
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / md / raid1.c
1 /*
2 * raid1.c : Multiple Devices driver for Linux
3 *
4 * Copyright (C) 1999, 2000, 2001 Ingo Molnar, Red Hat
5 *
6 * Copyright (C) 1996, 1997, 1998 Ingo Molnar, Miguel de Icaza, Gadi Oxman
7 *
8 * RAID-1 management functions.
9 *
10 * Better read-balancing code written by Mika Kuoppala <miku@iki.fi>, 2000
11 *
12 * Fixes to reconstruction by Jakob Østergaard" <jakob@ostenfeld.dk>
13 * Various fixes by Neil Brown <neilb@cse.unsw.edu.au>
14 *
15 * Changes by Peter T. Breuer <ptb@it.uc3m.es> 31/1/2003 to support
16 * bitmapped intelligence in resync:
17 *
18 * - bitmap marked during normal i/o
19 * - bitmap used to skip nondirty blocks during sync
20 *
21 * Additions to bitmap code, (C) 2003-2004 Paul Clements, SteelEye Technology:
22 * - persistent bitmap code
23 *
24 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License as published by
26 * the Free Software Foundation; either version 2, or (at your option)
27 * any later version.
28 *
29 * You should have received a copy of the GNU General Public License
30 * (for example /usr/src/linux/COPYING); if not, write to the Free
31 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
32 */
33
34 #include <linux/slab.h>
35 #include <linux/delay.h>
36 #include <linux/blkdev.h>
37 #include <linux/module.h>
38 #include <linux/seq_file.h>
39 #include <linux/ratelimit.h>
40 #include "md.h"
41 #include "raid1.h"
42 #include "bitmap.h"
43
44 /*
45 * Number of guaranteed r1bios in case of extreme VM load:
46 */
47 #define NR_RAID1_BIOS 256
48
49 /* when we get a read error on a read-only array, we redirect to another
50 * device without failing the first device, or trying to over-write to
51 * correct the read error. To keep track of bad blocks on a per-bio
52 * level, we store IO_BLOCKED in the appropriate 'bios' pointer
53 */
54 #define IO_BLOCKED ((struct bio *)1)
55 /* When we successfully write to a known bad-block, we need to remove the
56 * bad-block marking which must be done from process context. So we record
57 * the success by setting devs[n].bio to IO_MADE_GOOD
58 */
59 #define IO_MADE_GOOD ((struct bio *)2)
60
61 #define BIO_SPECIAL(bio) ((unsigned long)bio <= 2)
62
63 /* When there are this many requests queue to be written by
64 * the raid1 thread, we become 'congested' to provide back-pressure
65 * for writeback.
66 */
67 static int max_queued_requests = 1024;
68
69 static void allow_barrier(struct r1conf *conf);
70 static void lower_barrier(struct r1conf *conf);
71
72 static void * r1bio_pool_alloc(gfp_t gfp_flags, void *data)
73 {
74 struct pool_info *pi = data;
75 int size = offsetof(struct r1bio, bios[pi->raid_disks]);
76
77 /* allocate a r1bio with room for raid_disks entries in the bios array */
78 return kzalloc(size, gfp_flags);
79 }
80
81 static void r1bio_pool_free(void *r1_bio, void *data)
82 {
83 kfree(r1_bio);
84 }
85
86 #define RESYNC_BLOCK_SIZE (64*1024)
87 //#define RESYNC_BLOCK_SIZE PAGE_SIZE
88 #define RESYNC_SECTORS (RESYNC_BLOCK_SIZE >> 9)
89 #define RESYNC_PAGES ((RESYNC_BLOCK_SIZE + PAGE_SIZE-1) / PAGE_SIZE)
90 #define RESYNC_WINDOW (2048*1024)
91
92 static void * r1buf_pool_alloc(gfp_t gfp_flags, void *data)
93 {
94 struct pool_info *pi = data;
95 struct r1bio *r1_bio;
96 struct bio *bio;
97 int need_pages;
98 int i, j;
99
100 r1_bio = r1bio_pool_alloc(gfp_flags, pi);
101 if (!r1_bio)
102 return NULL;
103
104 /*
105 * Allocate bios : 1 for reading, n-1 for writing
106 */
107 for (j = pi->raid_disks ; j-- ; ) {
108 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
109 if (!bio)
110 goto out_free_bio;
111 r1_bio->bios[j] = bio;
112 }
113 /*
114 * Allocate RESYNC_PAGES data pages and attach them to
115 * the first bio.
116 * If this is a user-requested check/repair, allocate
117 * RESYNC_PAGES for each bio.
118 */
119 if (test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery))
120 need_pages = pi->raid_disks;
121 else
122 need_pages = 1;
123 for (j = 0; j < need_pages; j++) {
124 bio = r1_bio->bios[j];
125 bio->bi_vcnt = RESYNC_PAGES;
126
127 if (bio_alloc_pages(bio, gfp_flags))
128 goto out_free_pages;
129 }
130 /* If not user-requests, copy the page pointers to all bios */
131 if (!test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery)) {
132 for (i=0; i<RESYNC_PAGES ; i++)
133 for (j=1; j<pi->raid_disks; j++)
134 r1_bio->bios[j]->bi_io_vec[i].bv_page =
135 r1_bio->bios[0]->bi_io_vec[i].bv_page;
136 }
137
138 r1_bio->master_bio = NULL;
139
140 return r1_bio;
141
142 out_free_pages:
143 while (--j >= 0) {
144 struct bio_vec *bv;
145
146 bio_for_each_segment_all(bv, r1_bio->bios[j], i)
147 __free_page(bv->bv_page);
148 }
149
150 out_free_bio:
151 while (++j < pi->raid_disks)
152 bio_put(r1_bio->bios[j]);
153 r1bio_pool_free(r1_bio, data);
154 return NULL;
155 }
156
157 static void r1buf_pool_free(void *__r1_bio, void *data)
158 {
159 struct pool_info *pi = data;
160 int i,j;
161 struct r1bio *r1bio = __r1_bio;
162
163 for (i = 0; i < RESYNC_PAGES; i++)
164 for (j = pi->raid_disks; j-- ;) {
165 if (j == 0 ||
166 r1bio->bios[j]->bi_io_vec[i].bv_page !=
167 r1bio->bios[0]->bi_io_vec[i].bv_page)
168 safe_put_page(r1bio->bios[j]->bi_io_vec[i].bv_page);
169 }
170 for (i=0 ; i < pi->raid_disks; i++)
171 bio_put(r1bio->bios[i]);
172
173 r1bio_pool_free(r1bio, data);
174 }
175
176 static void put_all_bios(struct r1conf *conf, struct r1bio *r1_bio)
177 {
178 int i;
179
180 for (i = 0; i < conf->raid_disks * 2; i++) {
181 struct bio **bio = r1_bio->bios + i;
182 if (!BIO_SPECIAL(*bio))
183 bio_put(*bio);
184 *bio = NULL;
185 }
186 }
187
188 static void free_r1bio(struct r1bio *r1_bio)
189 {
190 struct r1conf *conf = r1_bio->mddev->private;
191
192 put_all_bios(conf, r1_bio);
193 mempool_free(r1_bio, conf->r1bio_pool);
194 }
195
196 static void put_buf(struct r1bio *r1_bio)
197 {
198 struct r1conf *conf = r1_bio->mddev->private;
199 int i;
200
201 for (i = 0; i < conf->raid_disks * 2; i++) {
202 struct bio *bio = r1_bio->bios[i];
203 if (bio->bi_end_io)
204 rdev_dec_pending(conf->mirrors[i].rdev, r1_bio->mddev);
205 }
206
207 mempool_free(r1_bio, conf->r1buf_pool);
208
209 lower_barrier(conf);
210 }
211
212 static void reschedule_retry(struct r1bio *r1_bio)
213 {
214 unsigned long flags;
215 struct mddev *mddev = r1_bio->mddev;
216 struct r1conf *conf = mddev->private;
217
218 spin_lock_irqsave(&conf->device_lock, flags);
219 list_add(&r1_bio->retry_list, &conf->retry_list);
220 conf->nr_queued ++;
221 spin_unlock_irqrestore(&conf->device_lock, flags);
222
223 wake_up(&conf->wait_barrier);
224 md_wakeup_thread(mddev->thread);
225 }
226
227 /*
228 * raid_end_bio_io() is called when we have finished servicing a mirrored
229 * operation and are ready to return a success/failure code to the buffer
230 * cache layer.
231 */
232 static void call_bio_endio(struct r1bio *r1_bio)
233 {
234 struct bio *bio = r1_bio->master_bio;
235 int done;
236 struct r1conf *conf = r1_bio->mddev->private;
237
238 if (bio->bi_phys_segments) {
239 unsigned long flags;
240 spin_lock_irqsave(&conf->device_lock, flags);
241 bio->bi_phys_segments--;
242 done = (bio->bi_phys_segments == 0);
243 spin_unlock_irqrestore(&conf->device_lock, flags);
244 } else
245 done = 1;
246
247 if (!test_bit(R1BIO_Uptodate, &r1_bio->state))
248 clear_bit(BIO_UPTODATE, &bio->bi_flags);
249 if (done) {
250 bio_endio(bio, 0);
251 /*
252 * Wake up any possible resync thread that waits for the device
253 * to go idle.
254 */
255 allow_barrier(conf);
256 }
257 }
258
259 static void raid_end_bio_io(struct r1bio *r1_bio)
260 {
261 struct bio *bio = r1_bio->master_bio;
262
263 /* if nobody has done the final endio yet, do it now */
264 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
265 pr_debug("raid1: sync end %s on sectors %llu-%llu\n",
266 (bio_data_dir(bio) == WRITE) ? "write" : "read",
267 (unsigned long long) bio->bi_sector,
268 (unsigned long long) bio->bi_sector +
269 bio_sectors(bio) - 1);
270
271 call_bio_endio(r1_bio);
272 }
273 free_r1bio(r1_bio);
274 }
275
276 /*
277 * Update disk head position estimator based on IRQ completion info.
278 */
279 static inline void update_head_pos(int disk, struct r1bio *r1_bio)
280 {
281 struct r1conf *conf = r1_bio->mddev->private;
282
283 conf->mirrors[disk].head_position =
284 r1_bio->sector + (r1_bio->sectors);
285 }
286
287 /*
288 * Find the disk number which triggered given bio
289 */
290 static int find_bio_disk(struct r1bio *r1_bio, struct bio *bio)
291 {
292 int mirror;
293 struct r1conf *conf = r1_bio->mddev->private;
294 int raid_disks = conf->raid_disks;
295
296 for (mirror = 0; mirror < raid_disks * 2; mirror++)
297 if (r1_bio->bios[mirror] == bio)
298 break;
299
300 BUG_ON(mirror == raid_disks * 2);
301 update_head_pos(mirror, r1_bio);
302
303 return mirror;
304 }
305
306 static void raid1_end_read_request(struct bio *bio, int error)
307 {
308 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
309 struct r1bio *r1_bio = bio->bi_private;
310 int mirror;
311 struct r1conf *conf = r1_bio->mddev->private;
312
313 mirror = r1_bio->read_disk;
314 /*
315 * this branch is our 'one mirror IO has finished' event handler:
316 */
317 update_head_pos(mirror, r1_bio);
318
319 if (uptodate)
320 set_bit(R1BIO_Uptodate, &r1_bio->state);
321 else {
322 /* If all other devices have failed, we want to return
323 * the error upwards rather than fail the last device.
324 * Here we redefine "uptodate" to mean "Don't want to retry"
325 */
326 unsigned long flags;
327 spin_lock_irqsave(&conf->device_lock, flags);
328 if (r1_bio->mddev->degraded == conf->raid_disks ||
329 (r1_bio->mddev->degraded == conf->raid_disks-1 &&
330 !test_bit(Faulty, &conf->mirrors[mirror].rdev->flags)))
331 uptodate = 1;
332 spin_unlock_irqrestore(&conf->device_lock, flags);
333 }
334
335 if (uptodate) {
336 raid_end_bio_io(r1_bio);
337 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
338 } else {
339 /*
340 * oops, read error:
341 */
342 char b[BDEVNAME_SIZE];
343 printk_ratelimited(
344 KERN_ERR "md/raid1:%s: %s: "
345 "rescheduling sector %llu\n",
346 mdname(conf->mddev),
347 bdevname(conf->mirrors[mirror].rdev->bdev,
348 b),
349 (unsigned long long)r1_bio->sector);
350 set_bit(R1BIO_ReadError, &r1_bio->state);
351 reschedule_retry(r1_bio);
352 /* don't drop the reference on read_disk yet */
353 }
354 }
355
356 static void close_write(struct r1bio *r1_bio)
357 {
358 /* it really is the end of this request */
359 if (test_bit(R1BIO_BehindIO, &r1_bio->state)) {
360 /* free extra copy of the data pages */
361 int i = r1_bio->behind_page_count;
362 while (i--)
363 safe_put_page(r1_bio->behind_bvecs[i].bv_page);
364 kfree(r1_bio->behind_bvecs);
365 r1_bio->behind_bvecs = NULL;
366 }
367 /* clear the bitmap if all writes complete successfully */
368 bitmap_endwrite(r1_bio->mddev->bitmap, r1_bio->sector,
369 r1_bio->sectors,
370 !test_bit(R1BIO_Degraded, &r1_bio->state),
371 test_bit(R1BIO_BehindIO, &r1_bio->state));
372 md_write_end(r1_bio->mddev);
373 }
374
375 static void r1_bio_write_done(struct r1bio *r1_bio)
376 {
377 if (!atomic_dec_and_test(&r1_bio->remaining))
378 return;
379
380 if (test_bit(R1BIO_WriteError, &r1_bio->state))
381 reschedule_retry(r1_bio);
382 else {
383 close_write(r1_bio);
384 if (test_bit(R1BIO_MadeGood, &r1_bio->state))
385 reschedule_retry(r1_bio);
386 else
387 raid_end_bio_io(r1_bio);
388 }
389 }
390
391 static void raid1_end_write_request(struct bio *bio, int error)
392 {
393 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
394 struct r1bio *r1_bio = bio->bi_private;
395 int mirror, behind = test_bit(R1BIO_BehindIO, &r1_bio->state);
396 struct r1conf *conf = r1_bio->mddev->private;
397 struct bio *to_put = NULL;
398
399 mirror = find_bio_disk(r1_bio, bio);
400
401 /*
402 * 'one mirror IO has finished' event handler:
403 */
404 if (!uptodate) {
405 set_bit(WriteErrorSeen,
406 &conf->mirrors[mirror].rdev->flags);
407 if (!test_and_set_bit(WantReplacement,
408 &conf->mirrors[mirror].rdev->flags))
409 set_bit(MD_RECOVERY_NEEDED, &
410 conf->mddev->recovery);
411
412 set_bit(R1BIO_WriteError, &r1_bio->state);
413 } else {
414 /*
415 * Set R1BIO_Uptodate in our master bio, so that we
416 * will return a good error code for to the higher
417 * levels even if IO on some other mirrored buffer
418 * fails.
419 *
420 * The 'master' represents the composite IO operation
421 * to user-side. So if something waits for IO, then it
422 * will wait for the 'master' bio.
423 */
424 sector_t first_bad;
425 int bad_sectors;
426
427 r1_bio->bios[mirror] = NULL;
428 to_put = bio;
429 /*
430 * Do not set R1BIO_Uptodate if the current device is
431 * rebuilding or Faulty. This is because we cannot use
432 * such device for properly reading the data back (we could
433 * potentially use it, if the current write would have felt
434 * before rdev->recovery_offset, but for simplicity we don't
435 * check this here.
436 */
437 if (test_bit(In_sync, &conf->mirrors[mirror].rdev->flags) &&
438 !test_bit(Faulty, &conf->mirrors[mirror].rdev->flags))
439 set_bit(R1BIO_Uptodate, &r1_bio->state);
440
441 /* Maybe we can clear some bad blocks. */
442 if (is_badblock(conf->mirrors[mirror].rdev,
443 r1_bio->sector, r1_bio->sectors,
444 &first_bad, &bad_sectors)) {
445 r1_bio->bios[mirror] = IO_MADE_GOOD;
446 set_bit(R1BIO_MadeGood, &r1_bio->state);
447 }
448 }
449
450 if (behind) {
451 if (test_bit(WriteMostly, &conf->mirrors[mirror].rdev->flags))
452 atomic_dec(&r1_bio->behind_remaining);
453
454 /*
455 * In behind mode, we ACK the master bio once the I/O
456 * has safely reached all non-writemostly
457 * disks. Setting the Returned bit ensures that this
458 * gets done only once -- we don't ever want to return
459 * -EIO here, instead we'll wait
460 */
461 if (atomic_read(&r1_bio->behind_remaining) >= (atomic_read(&r1_bio->remaining)-1) &&
462 test_bit(R1BIO_Uptodate, &r1_bio->state)) {
463 /* Maybe we can return now */
464 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
465 struct bio *mbio = r1_bio->master_bio;
466 pr_debug("raid1: behind end write sectors"
467 " %llu-%llu\n",
468 (unsigned long long) mbio->bi_sector,
469 (unsigned long long) mbio->bi_sector +
470 bio_sectors(mbio) - 1);
471 call_bio_endio(r1_bio);
472 }
473 }
474 }
475 if (r1_bio->bios[mirror] == NULL)
476 rdev_dec_pending(conf->mirrors[mirror].rdev,
477 conf->mddev);
478
479 /*
480 * Let's see if all mirrored write operations have finished
481 * already.
482 */
483 r1_bio_write_done(r1_bio);
484
485 if (to_put)
486 bio_put(to_put);
487 }
488
489
490 /*
491 * This routine returns the disk from which the requested read should
492 * be done. There is a per-array 'next expected sequential IO' sector
493 * number - if this matches on the next IO then we use the last disk.
494 * There is also a per-disk 'last know head position' sector that is
495 * maintained from IRQ contexts, both the normal and the resync IO
496 * completion handlers update this position correctly. If there is no
497 * perfect sequential match then we pick the disk whose head is closest.
498 *
499 * If there are 2 mirrors in the same 2 devices, performance degrades
500 * because position is mirror, not device based.
501 *
502 * The rdev for the device selected will have nr_pending incremented.
503 */
504 static int read_balance(struct r1conf *conf, struct r1bio *r1_bio, int *max_sectors)
505 {
506 const sector_t this_sector = r1_bio->sector;
507 int sectors;
508 int best_good_sectors;
509 int best_disk, best_dist_disk, best_pending_disk;
510 int has_nonrot_disk;
511 int disk;
512 sector_t best_dist;
513 unsigned int min_pending;
514 struct md_rdev *rdev;
515 int choose_first;
516 int choose_next_idle;
517
518 rcu_read_lock();
519 /*
520 * Check if we can balance. We can balance on the whole
521 * device if no resync is going on, or below the resync window.
522 * We take the first readable disk when above the resync window.
523 */
524 retry:
525 sectors = r1_bio->sectors;
526 best_disk = -1;
527 best_dist_disk = -1;
528 best_dist = MaxSector;
529 best_pending_disk = -1;
530 min_pending = UINT_MAX;
531 best_good_sectors = 0;
532 has_nonrot_disk = 0;
533 choose_next_idle = 0;
534
535 if (conf->mddev->recovery_cp < MaxSector &&
536 (this_sector + sectors >= conf->next_resync))
537 choose_first = 1;
538 else
539 choose_first = 0;
540
541 for (disk = 0 ; disk < conf->raid_disks * 2 ; disk++) {
542 sector_t dist;
543 sector_t first_bad;
544 int bad_sectors;
545 unsigned int pending;
546 bool nonrot;
547
548 rdev = rcu_dereference(conf->mirrors[disk].rdev);
549 if (r1_bio->bios[disk] == IO_BLOCKED
550 || rdev == NULL
551 || test_bit(Unmerged, &rdev->flags)
552 || test_bit(Faulty, &rdev->flags))
553 continue;
554 if (!test_bit(In_sync, &rdev->flags) &&
555 rdev->recovery_offset < this_sector + sectors)
556 continue;
557 if (test_bit(WriteMostly, &rdev->flags)) {
558 /* Don't balance among write-mostly, just
559 * use the first as a last resort */
560 if (best_dist_disk < 0) {
561 if (is_badblock(rdev, this_sector, sectors,
562 &first_bad, &bad_sectors)) {
563 if (first_bad < this_sector)
564 /* Cannot use this */
565 continue;
566 best_good_sectors = first_bad - this_sector;
567 } else
568 best_good_sectors = sectors;
569 best_dist_disk = disk;
570 best_pending_disk = disk;
571 }
572 continue;
573 }
574 /* This is a reasonable device to use. It might
575 * even be best.
576 */
577 if (is_badblock(rdev, this_sector, sectors,
578 &first_bad, &bad_sectors)) {
579 if (best_dist < MaxSector)
580 /* already have a better device */
581 continue;
582 if (first_bad <= this_sector) {
583 /* cannot read here. If this is the 'primary'
584 * device, then we must not read beyond
585 * bad_sectors from another device..
586 */
587 bad_sectors -= (this_sector - first_bad);
588 if (choose_first && sectors > bad_sectors)
589 sectors = bad_sectors;
590 if (best_good_sectors > sectors)
591 best_good_sectors = sectors;
592
593 } else {
594 sector_t good_sectors = first_bad - this_sector;
595 if (good_sectors > best_good_sectors) {
596 best_good_sectors = good_sectors;
597 best_disk = disk;
598 }
599 if (choose_first)
600 break;
601 }
602 continue;
603 } else
604 best_good_sectors = sectors;
605
606 nonrot = blk_queue_nonrot(bdev_get_queue(rdev->bdev));
607 has_nonrot_disk |= nonrot;
608 pending = atomic_read(&rdev->nr_pending);
609 dist = abs(this_sector - conf->mirrors[disk].head_position);
610 if (choose_first) {
611 best_disk = disk;
612 break;
613 }
614 /* Don't change to another disk for sequential reads */
615 if (conf->mirrors[disk].next_seq_sect == this_sector
616 || dist == 0) {
617 int opt_iosize = bdev_io_opt(rdev->bdev) >> 9;
618 struct raid1_info *mirror = &conf->mirrors[disk];
619
620 best_disk = disk;
621 /*
622 * If buffered sequential IO size exceeds optimal
623 * iosize, check if there is idle disk. If yes, choose
624 * the idle disk. read_balance could already choose an
625 * idle disk before noticing it's a sequential IO in
626 * this disk. This doesn't matter because this disk
627 * will idle, next time it will be utilized after the
628 * first disk has IO size exceeds optimal iosize. In
629 * this way, iosize of the first disk will be optimal
630 * iosize at least. iosize of the second disk might be
631 * small, but not a big deal since when the second disk
632 * starts IO, the first disk is likely still busy.
633 */
634 if (nonrot && opt_iosize > 0 &&
635 mirror->seq_start != MaxSector &&
636 mirror->next_seq_sect > opt_iosize &&
637 mirror->next_seq_sect - opt_iosize >=
638 mirror->seq_start) {
639 choose_next_idle = 1;
640 continue;
641 }
642 break;
643 }
644 /* If device is idle, use it */
645 if (pending == 0) {
646 best_disk = disk;
647 break;
648 }
649
650 if (choose_next_idle)
651 continue;
652
653 if (min_pending > pending) {
654 min_pending = pending;
655 best_pending_disk = disk;
656 }
657
658 if (dist < best_dist) {
659 best_dist = dist;
660 best_dist_disk = disk;
661 }
662 }
663
664 /*
665 * If all disks are rotational, choose the closest disk. If any disk is
666 * non-rotational, choose the disk with less pending request even the
667 * disk is rotational, which might/might not be optimal for raids with
668 * mixed ratation/non-rotational disks depending on workload.
669 */
670 if (best_disk == -1) {
671 if (has_nonrot_disk)
672 best_disk = best_pending_disk;
673 else
674 best_disk = best_dist_disk;
675 }
676
677 if (best_disk >= 0) {
678 rdev = rcu_dereference(conf->mirrors[best_disk].rdev);
679 if (!rdev)
680 goto retry;
681 atomic_inc(&rdev->nr_pending);
682 if (test_bit(Faulty, &rdev->flags)) {
683 /* cannot risk returning a device that failed
684 * before we inc'ed nr_pending
685 */
686 rdev_dec_pending(rdev, conf->mddev);
687 goto retry;
688 }
689 sectors = best_good_sectors;
690
691 if (conf->mirrors[best_disk].next_seq_sect != this_sector)
692 conf->mirrors[best_disk].seq_start = this_sector;
693
694 conf->mirrors[best_disk].next_seq_sect = this_sector + sectors;
695 }
696 rcu_read_unlock();
697 *max_sectors = sectors;
698
699 return best_disk;
700 }
701
702 static int raid1_mergeable_bvec(struct request_queue *q,
703 struct bvec_merge_data *bvm,
704 struct bio_vec *biovec)
705 {
706 struct mddev *mddev = q->queuedata;
707 struct r1conf *conf = mddev->private;
708 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
709 int max = biovec->bv_len;
710
711 if (mddev->merge_check_needed) {
712 int disk;
713 rcu_read_lock();
714 for (disk = 0; disk < conf->raid_disks * 2; disk++) {
715 struct md_rdev *rdev = rcu_dereference(
716 conf->mirrors[disk].rdev);
717 if (rdev && !test_bit(Faulty, &rdev->flags)) {
718 struct request_queue *q =
719 bdev_get_queue(rdev->bdev);
720 if (q->merge_bvec_fn) {
721 bvm->bi_sector = sector +
722 rdev->data_offset;
723 bvm->bi_bdev = rdev->bdev;
724 max = min(max, q->merge_bvec_fn(
725 q, bvm, biovec));
726 }
727 }
728 }
729 rcu_read_unlock();
730 }
731 return max;
732
733 }
734
735 int md_raid1_congested(struct mddev *mddev, int bits)
736 {
737 struct r1conf *conf = mddev->private;
738 int i, ret = 0;
739
740 if ((bits & (1 << BDI_async_congested)) &&
741 conf->pending_count >= max_queued_requests)
742 return 1;
743
744 rcu_read_lock();
745 for (i = 0; i < conf->raid_disks * 2; i++) {
746 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
747 if (rdev && !test_bit(Faulty, &rdev->flags)) {
748 struct request_queue *q = bdev_get_queue(rdev->bdev);
749
750 BUG_ON(!q);
751
752 /* Note the '|| 1' - when read_balance prefers
753 * non-congested targets, it can be removed
754 */
755 if ((bits & (1<<BDI_async_congested)) || 1)
756 ret |= bdi_congested(&q->backing_dev_info, bits);
757 else
758 ret &= bdi_congested(&q->backing_dev_info, bits);
759 }
760 }
761 rcu_read_unlock();
762 return ret;
763 }
764 EXPORT_SYMBOL_GPL(md_raid1_congested);
765
766 static int raid1_congested(void *data, int bits)
767 {
768 struct mddev *mddev = data;
769
770 return mddev_congested(mddev, bits) ||
771 md_raid1_congested(mddev, bits);
772 }
773
774 static void flush_pending_writes(struct r1conf *conf)
775 {
776 /* Any writes that have been queued but are awaiting
777 * bitmap updates get flushed here.
778 */
779 spin_lock_irq(&conf->device_lock);
780
781 if (conf->pending_bio_list.head) {
782 struct bio *bio;
783 bio = bio_list_get(&conf->pending_bio_list);
784 conf->pending_count = 0;
785 spin_unlock_irq(&conf->device_lock);
786 /* flush any pending bitmap writes to
787 * disk before proceeding w/ I/O */
788 bitmap_unplug(conf->mddev->bitmap);
789 wake_up(&conf->wait_barrier);
790
791 while (bio) { /* submit pending writes */
792 struct bio *next = bio->bi_next;
793 bio->bi_next = NULL;
794 if (unlikely((bio->bi_rw & REQ_DISCARD) &&
795 !blk_queue_discard(bdev_get_queue(bio->bi_bdev))))
796 /* Just ignore it */
797 bio_endio(bio, 0);
798 else
799 generic_make_request(bio);
800 bio = next;
801 }
802 } else
803 spin_unlock_irq(&conf->device_lock);
804 }
805
806 /* Barriers....
807 * Sometimes we need to suspend IO while we do something else,
808 * either some resync/recovery, or reconfigure the array.
809 * To do this we raise a 'barrier'.
810 * The 'barrier' is a counter that can be raised multiple times
811 * to count how many activities are happening which preclude
812 * normal IO.
813 * We can only raise the barrier if there is no pending IO.
814 * i.e. if nr_pending == 0.
815 * We choose only to raise the barrier if no-one is waiting for the
816 * barrier to go down. This means that as soon as an IO request
817 * is ready, no other operations which require a barrier will start
818 * until the IO request has had a chance.
819 *
820 * So: regular IO calls 'wait_barrier'. When that returns there
821 * is no backgroup IO happening, It must arrange to call
822 * allow_barrier when it has finished its IO.
823 * backgroup IO calls must call raise_barrier. Once that returns
824 * there is no normal IO happeing. It must arrange to call
825 * lower_barrier when the particular background IO completes.
826 */
827 #define RESYNC_DEPTH 32
828
829 static void raise_barrier(struct r1conf *conf)
830 {
831 spin_lock_irq(&conf->resync_lock);
832
833 /* Wait until no block IO is waiting */
834 wait_event_lock_irq(conf->wait_barrier, !conf->nr_waiting,
835 conf->resync_lock);
836
837 /* block any new IO from starting */
838 conf->barrier++;
839
840 /* Now wait for all pending IO to complete */
841 wait_event_lock_irq(conf->wait_barrier,
842 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
843 conf->resync_lock);
844
845 spin_unlock_irq(&conf->resync_lock);
846 }
847
848 static void lower_barrier(struct r1conf *conf)
849 {
850 unsigned long flags;
851 BUG_ON(conf->barrier <= 0);
852 spin_lock_irqsave(&conf->resync_lock, flags);
853 conf->barrier--;
854 spin_unlock_irqrestore(&conf->resync_lock, flags);
855 wake_up(&conf->wait_barrier);
856 }
857
858 static void wait_barrier(struct r1conf *conf)
859 {
860 spin_lock_irq(&conf->resync_lock);
861 if (conf->barrier) {
862 conf->nr_waiting++;
863 /* Wait for the barrier to drop.
864 * However if there are already pending
865 * requests (preventing the barrier from
866 * rising completely), and the
867 * pre-process bio queue isn't empty,
868 * then don't wait, as we need to empty
869 * that queue to get the nr_pending
870 * count down.
871 */
872 wait_event_lock_irq(conf->wait_barrier,
873 !conf->barrier ||
874 (conf->nr_pending &&
875 current->bio_list &&
876 !bio_list_empty(current->bio_list)),
877 conf->resync_lock);
878 conf->nr_waiting--;
879 }
880 conf->nr_pending++;
881 spin_unlock_irq(&conf->resync_lock);
882 }
883
884 static void allow_barrier(struct r1conf *conf)
885 {
886 unsigned long flags;
887 spin_lock_irqsave(&conf->resync_lock, flags);
888 conf->nr_pending--;
889 spin_unlock_irqrestore(&conf->resync_lock, flags);
890 wake_up(&conf->wait_barrier);
891 }
892
893 static void freeze_array(struct r1conf *conf, int extra)
894 {
895 /* stop syncio and normal IO and wait for everything to
896 * go quite.
897 * We increment barrier and nr_waiting, and then
898 * wait until nr_pending match nr_queued+extra
899 * This is called in the context of one normal IO request
900 * that has failed. Thus any sync request that might be pending
901 * will be blocked by nr_pending, and we need to wait for
902 * pending IO requests to complete or be queued for re-try.
903 * Thus the number queued (nr_queued) plus this request (extra)
904 * must match the number of pending IOs (nr_pending) before
905 * we continue.
906 */
907 spin_lock_irq(&conf->resync_lock);
908 conf->barrier++;
909 conf->nr_waiting++;
910 wait_event_lock_irq_cmd(conf->wait_barrier,
911 conf->nr_pending == conf->nr_queued+extra,
912 conf->resync_lock,
913 flush_pending_writes(conf));
914 spin_unlock_irq(&conf->resync_lock);
915 }
916 static void unfreeze_array(struct r1conf *conf)
917 {
918 /* reverse the effect of the freeze */
919 spin_lock_irq(&conf->resync_lock);
920 conf->barrier--;
921 conf->nr_waiting--;
922 wake_up(&conf->wait_barrier);
923 spin_unlock_irq(&conf->resync_lock);
924 }
925
926
927 /* duplicate the data pages for behind I/O
928 */
929 static void alloc_behind_pages(struct bio *bio, struct r1bio *r1_bio)
930 {
931 int i;
932 struct bio_vec *bvec;
933 struct bio_vec *bvecs = kzalloc(bio->bi_vcnt * sizeof(struct bio_vec),
934 GFP_NOIO);
935 if (unlikely(!bvecs))
936 return;
937
938 bio_for_each_segment_all(bvec, bio, i) {
939 bvecs[i] = *bvec;
940 bvecs[i].bv_page = alloc_page(GFP_NOIO);
941 if (unlikely(!bvecs[i].bv_page))
942 goto do_sync_io;
943 memcpy(kmap(bvecs[i].bv_page) + bvec->bv_offset,
944 kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len);
945 kunmap(bvecs[i].bv_page);
946 kunmap(bvec->bv_page);
947 }
948 r1_bio->behind_bvecs = bvecs;
949 r1_bio->behind_page_count = bio->bi_vcnt;
950 set_bit(R1BIO_BehindIO, &r1_bio->state);
951 return;
952
953 do_sync_io:
954 for (i = 0; i < bio->bi_vcnt; i++)
955 if (bvecs[i].bv_page)
956 put_page(bvecs[i].bv_page);
957 kfree(bvecs);
958 pr_debug("%dB behind alloc failed, doing sync I/O\n", bio->bi_size);
959 }
960
961 struct raid1_plug_cb {
962 struct blk_plug_cb cb;
963 struct bio_list pending;
964 int pending_cnt;
965 };
966
967 static void raid1_unplug(struct blk_plug_cb *cb, bool from_schedule)
968 {
969 struct raid1_plug_cb *plug = container_of(cb, struct raid1_plug_cb,
970 cb);
971 struct mddev *mddev = plug->cb.data;
972 struct r1conf *conf = mddev->private;
973 struct bio *bio;
974
975 if (from_schedule || current->bio_list) {
976 spin_lock_irq(&conf->device_lock);
977 bio_list_merge(&conf->pending_bio_list, &plug->pending);
978 conf->pending_count += plug->pending_cnt;
979 spin_unlock_irq(&conf->device_lock);
980 wake_up(&conf->wait_barrier);
981 md_wakeup_thread(mddev->thread);
982 kfree(plug);
983 return;
984 }
985
986 /* we aren't scheduling, so we can do the write-out directly. */
987 bio = bio_list_get(&plug->pending);
988 bitmap_unplug(mddev->bitmap);
989 wake_up(&conf->wait_barrier);
990
991 while (bio) { /* submit pending writes */
992 struct bio *next = bio->bi_next;
993 bio->bi_next = NULL;
994 if (unlikely((bio->bi_rw & REQ_DISCARD) &&
995 !blk_queue_discard(bdev_get_queue(bio->bi_bdev))))
996 /* Just ignore it */
997 bio_endio(bio, 0);
998 else
999 generic_make_request(bio);
1000 bio = next;
1001 }
1002 kfree(plug);
1003 }
1004
1005 static void make_request(struct mddev *mddev, struct bio * bio)
1006 {
1007 struct r1conf *conf = mddev->private;
1008 struct raid1_info *mirror;
1009 struct r1bio *r1_bio;
1010 struct bio *read_bio;
1011 int i, disks;
1012 struct bitmap *bitmap;
1013 unsigned long flags;
1014 const int rw = bio_data_dir(bio);
1015 const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
1016 const unsigned long do_flush_fua = (bio->bi_rw & (REQ_FLUSH | REQ_FUA));
1017 const unsigned long do_discard = (bio->bi_rw
1018 & (REQ_DISCARD | REQ_SECURE));
1019 const unsigned long do_same = (bio->bi_rw & REQ_WRITE_SAME);
1020 struct md_rdev *blocked_rdev;
1021 struct blk_plug_cb *cb;
1022 struct raid1_plug_cb *plug = NULL;
1023 int first_clone;
1024 int sectors_handled;
1025 int max_sectors;
1026
1027 /*
1028 * Register the new request and wait if the reconstruction
1029 * thread has put up a bar for new requests.
1030 * Continue immediately if no resync is active currently.
1031 */
1032
1033 md_write_start(mddev, bio); /* wait on superblock update early */
1034
1035 if (bio_data_dir(bio) == WRITE &&
1036 bio_end_sector(bio) > mddev->suspend_lo &&
1037 bio->bi_sector < mddev->suspend_hi) {
1038 /* As the suspend_* range is controlled by
1039 * userspace, we want an interruptible
1040 * wait.
1041 */
1042 DEFINE_WAIT(w);
1043 for (;;) {
1044 flush_signals(current);
1045 prepare_to_wait(&conf->wait_barrier,
1046 &w, TASK_INTERRUPTIBLE);
1047 if (bio_end_sector(bio) <= mddev->suspend_lo ||
1048 bio->bi_sector >= mddev->suspend_hi)
1049 break;
1050 schedule();
1051 }
1052 finish_wait(&conf->wait_barrier, &w);
1053 }
1054
1055 wait_barrier(conf);
1056
1057 bitmap = mddev->bitmap;
1058
1059 /*
1060 * make_request() can abort the operation when READA is being
1061 * used and no empty request is available.
1062 *
1063 */
1064 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
1065
1066 r1_bio->master_bio = bio;
1067 r1_bio->sectors = bio_sectors(bio);
1068 r1_bio->state = 0;
1069 r1_bio->mddev = mddev;
1070 r1_bio->sector = bio->bi_sector;
1071
1072 /* We might need to issue multiple reads to different
1073 * devices if there are bad blocks around, so we keep
1074 * track of the number of reads in bio->bi_phys_segments.
1075 * If this is 0, there is only one r1_bio and no locking
1076 * will be needed when requests complete. If it is
1077 * non-zero, then it is the number of not-completed requests.
1078 */
1079 bio->bi_phys_segments = 0;
1080 clear_bit(BIO_SEG_VALID, &bio->bi_flags);
1081
1082 if (rw == READ) {
1083 /*
1084 * read balancing logic:
1085 */
1086 int rdisk;
1087
1088 read_again:
1089 rdisk = read_balance(conf, r1_bio, &max_sectors);
1090
1091 if (rdisk < 0) {
1092 /* couldn't find anywhere to read from */
1093 raid_end_bio_io(r1_bio);
1094 return;
1095 }
1096 mirror = conf->mirrors + rdisk;
1097
1098 if (test_bit(WriteMostly, &mirror->rdev->flags) &&
1099 bitmap) {
1100 /* Reading from a write-mostly device must
1101 * take care not to over-take any writes
1102 * that are 'behind'
1103 */
1104 wait_event(bitmap->behind_wait,
1105 atomic_read(&bitmap->behind_writes) == 0);
1106 }
1107 r1_bio->read_disk = rdisk;
1108
1109 read_bio = bio_clone_mddev(bio, GFP_NOIO, mddev);
1110 md_trim_bio(read_bio, r1_bio->sector - bio->bi_sector,
1111 max_sectors);
1112
1113 r1_bio->bios[rdisk] = read_bio;
1114
1115 read_bio->bi_sector = r1_bio->sector + mirror->rdev->data_offset;
1116 read_bio->bi_bdev = mirror->rdev->bdev;
1117 read_bio->bi_end_io = raid1_end_read_request;
1118 read_bio->bi_rw = READ | do_sync;
1119 read_bio->bi_private = r1_bio;
1120
1121 if (max_sectors < r1_bio->sectors) {
1122 /* could not read all from this device, so we will
1123 * need another r1_bio.
1124 */
1125
1126 sectors_handled = (r1_bio->sector + max_sectors
1127 - bio->bi_sector);
1128 r1_bio->sectors = max_sectors;
1129 spin_lock_irq(&conf->device_lock);
1130 if (bio->bi_phys_segments == 0)
1131 bio->bi_phys_segments = 2;
1132 else
1133 bio->bi_phys_segments++;
1134 spin_unlock_irq(&conf->device_lock);
1135 /* Cannot call generic_make_request directly
1136 * as that will be queued in __make_request
1137 * and subsequent mempool_alloc might block waiting
1138 * for it. So hand bio over to raid1d.
1139 */
1140 reschedule_retry(r1_bio);
1141
1142 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
1143
1144 r1_bio->master_bio = bio;
1145 r1_bio->sectors = bio_sectors(bio) - sectors_handled;
1146 r1_bio->state = 0;
1147 r1_bio->mddev = mddev;
1148 r1_bio->sector = bio->bi_sector + sectors_handled;
1149 goto read_again;
1150 } else
1151 generic_make_request(read_bio);
1152 return;
1153 }
1154
1155 /*
1156 * WRITE:
1157 */
1158 if (conf->pending_count >= max_queued_requests) {
1159 md_wakeup_thread(mddev->thread);
1160 wait_event(conf->wait_barrier,
1161 conf->pending_count < max_queued_requests);
1162 }
1163 /* first select target devices under rcu_lock and
1164 * inc refcount on their rdev. Record them by setting
1165 * bios[x] to bio
1166 * If there are known/acknowledged bad blocks on any device on
1167 * which we have seen a write error, we want to avoid writing those
1168 * blocks.
1169 * This potentially requires several writes to write around
1170 * the bad blocks. Each set of writes gets it's own r1bio
1171 * with a set of bios attached.
1172 */
1173
1174 disks = conf->raid_disks * 2;
1175 retry_write:
1176 blocked_rdev = NULL;
1177 rcu_read_lock();
1178 max_sectors = r1_bio->sectors;
1179 for (i = 0; i < disks; i++) {
1180 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
1181 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
1182 atomic_inc(&rdev->nr_pending);
1183 blocked_rdev = rdev;
1184 break;
1185 }
1186 r1_bio->bios[i] = NULL;
1187 if (!rdev || test_bit(Faulty, &rdev->flags)
1188 || test_bit(Unmerged, &rdev->flags)) {
1189 if (i < conf->raid_disks)
1190 set_bit(R1BIO_Degraded, &r1_bio->state);
1191 continue;
1192 }
1193
1194 atomic_inc(&rdev->nr_pending);
1195 if (test_bit(WriteErrorSeen, &rdev->flags)) {
1196 sector_t first_bad;
1197 int bad_sectors;
1198 int is_bad;
1199
1200 is_bad = is_badblock(rdev, r1_bio->sector,
1201 max_sectors,
1202 &first_bad, &bad_sectors);
1203 if (is_bad < 0) {
1204 /* mustn't write here until the bad block is
1205 * acknowledged*/
1206 set_bit(BlockedBadBlocks, &rdev->flags);
1207 blocked_rdev = rdev;
1208 break;
1209 }
1210 if (is_bad && first_bad <= r1_bio->sector) {
1211 /* Cannot write here at all */
1212 bad_sectors -= (r1_bio->sector - first_bad);
1213 if (bad_sectors < max_sectors)
1214 /* mustn't write more than bad_sectors
1215 * to other devices yet
1216 */
1217 max_sectors = bad_sectors;
1218 rdev_dec_pending(rdev, mddev);
1219 /* We don't set R1BIO_Degraded as that
1220 * only applies if the disk is
1221 * missing, so it might be re-added,
1222 * and we want to know to recover this
1223 * chunk.
1224 * In this case the device is here,
1225 * and the fact that this chunk is not
1226 * in-sync is recorded in the bad
1227 * block log
1228 */
1229 continue;
1230 }
1231 if (is_bad) {
1232 int good_sectors = first_bad - r1_bio->sector;
1233 if (good_sectors < max_sectors)
1234 max_sectors = good_sectors;
1235 }
1236 }
1237 r1_bio->bios[i] = bio;
1238 }
1239 rcu_read_unlock();
1240
1241 if (unlikely(blocked_rdev)) {
1242 /* Wait for this device to become unblocked */
1243 int j;
1244
1245 for (j = 0; j < i; j++)
1246 if (r1_bio->bios[j])
1247 rdev_dec_pending(conf->mirrors[j].rdev, mddev);
1248 r1_bio->state = 0;
1249 allow_barrier(conf);
1250 md_wait_for_blocked_rdev(blocked_rdev, mddev);
1251 wait_barrier(conf);
1252 goto retry_write;
1253 }
1254
1255 if (max_sectors < r1_bio->sectors) {
1256 /* We are splitting this write into multiple parts, so
1257 * we need to prepare for allocating another r1_bio.
1258 */
1259 r1_bio->sectors = max_sectors;
1260 spin_lock_irq(&conf->device_lock);
1261 if (bio->bi_phys_segments == 0)
1262 bio->bi_phys_segments = 2;
1263 else
1264 bio->bi_phys_segments++;
1265 spin_unlock_irq(&conf->device_lock);
1266 }
1267 sectors_handled = r1_bio->sector + max_sectors - bio->bi_sector;
1268
1269 atomic_set(&r1_bio->remaining, 1);
1270 atomic_set(&r1_bio->behind_remaining, 0);
1271
1272 first_clone = 1;
1273 for (i = 0; i < disks; i++) {
1274 struct bio *mbio;
1275 if (!r1_bio->bios[i])
1276 continue;
1277
1278 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
1279 md_trim_bio(mbio, r1_bio->sector - bio->bi_sector, max_sectors);
1280
1281 if (first_clone) {
1282 /* do behind I/O ?
1283 * Not if there are too many, or cannot
1284 * allocate memory, or a reader on WriteMostly
1285 * is waiting for behind writes to flush */
1286 if (bitmap &&
1287 (atomic_read(&bitmap->behind_writes)
1288 < mddev->bitmap_info.max_write_behind) &&
1289 !waitqueue_active(&bitmap->behind_wait))
1290 alloc_behind_pages(mbio, r1_bio);
1291
1292 bitmap_startwrite(bitmap, r1_bio->sector,
1293 r1_bio->sectors,
1294 test_bit(R1BIO_BehindIO,
1295 &r1_bio->state));
1296 first_clone = 0;
1297 }
1298 if (r1_bio->behind_bvecs) {
1299 struct bio_vec *bvec;
1300 int j;
1301
1302 /*
1303 * We trimmed the bio, so _all is legit
1304 */
1305 bio_for_each_segment_all(bvec, mbio, j)
1306 bvec->bv_page = r1_bio->behind_bvecs[j].bv_page;
1307 if (test_bit(WriteMostly, &conf->mirrors[i].rdev->flags))
1308 atomic_inc(&r1_bio->behind_remaining);
1309 }
1310
1311 r1_bio->bios[i] = mbio;
1312
1313 mbio->bi_sector = (r1_bio->sector +
1314 conf->mirrors[i].rdev->data_offset);
1315 mbio->bi_bdev = conf->mirrors[i].rdev->bdev;
1316 mbio->bi_end_io = raid1_end_write_request;
1317 mbio->bi_rw =
1318 WRITE | do_flush_fua | do_sync | do_discard | do_same;
1319 mbio->bi_private = r1_bio;
1320
1321 atomic_inc(&r1_bio->remaining);
1322
1323 cb = blk_check_plugged(raid1_unplug, mddev, sizeof(*plug));
1324 if (cb)
1325 plug = container_of(cb, struct raid1_plug_cb, cb);
1326 else
1327 plug = NULL;
1328 spin_lock_irqsave(&conf->device_lock, flags);
1329 if (plug) {
1330 bio_list_add(&plug->pending, mbio);
1331 plug->pending_cnt++;
1332 } else {
1333 bio_list_add(&conf->pending_bio_list, mbio);
1334 conf->pending_count++;
1335 }
1336 spin_unlock_irqrestore(&conf->device_lock, flags);
1337 if (!plug)
1338 md_wakeup_thread(mddev->thread);
1339 }
1340 /* Mustn't call r1_bio_write_done before this next test,
1341 * as it could result in the bio being freed.
1342 */
1343 if (sectors_handled < bio_sectors(bio)) {
1344 r1_bio_write_done(r1_bio);
1345 /* We need another r1_bio. It has already been counted
1346 * in bio->bi_phys_segments
1347 */
1348 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
1349 r1_bio->master_bio = bio;
1350 r1_bio->sectors = bio_sectors(bio) - sectors_handled;
1351 r1_bio->state = 0;
1352 r1_bio->mddev = mddev;
1353 r1_bio->sector = bio->bi_sector + sectors_handled;
1354 goto retry_write;
1355 }
1356
1357 r1_bio_write_done(r1_bio);
1358
1359 /* In case raid1d snuck in to freeze_array */
1360 wake_up(&conf->wait_barrier);
1361 }
1362
1363 static void status(struct seq_file *seq, struct mddev *mddev)
1364 {
1365 struct r1conf *conf = mddev->private;
1366 int i;
1367
1368 seq_printf(seq, " [%d/%d] [", conf->raid_disks,
1369 conf->raid_disks - mddev->degraded);
1370 rcu_read_lock();
1371 for (i = 0; i < conf->raid_disks; i++) {
1372 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
1373 seq_printf(seq, "%s",
1374 rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
1375 }
1376 rcu_read_unlock();
1377 seq_printf(seq, "]");
1378 }
1379
1380
1381 static void error(struct mddev *mddev, struct md_rdev *rdev)
1382 {
1383 char b[BDEVNAME_SIZE];
1384 struct r1conf *conf = mddev->private;
1385
1386 /*
1387 * If it is not operational, then we have already marked it as dead
1388 * else if it is the last working disks, ignore the error, let the
1389 * next level up know.
1390 * else mark the drive as failed
1391 */
1392 if (test_bit(In_sync, &rdev->flags)
1393 && (conf->raid_disks - mddev->degraded) == 1) {
1394 /*
1395 * Don't fail the drive, act as though we were just a
1396 * normal single drive.
1397 * However don't try a recovery from this drive as
1398 * it is very likely to fail.
1399 */
1400 conf->recovery_disabled = mddev->recovery_disabled;
1401 return;
1402 }
1403 set_bit(Blocked, &rdev->flags);
1404 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1405 unsigned long flags;
1406 spin_lock_irqsave(&conf->device_lock, flags);
1407 mddev->degraded++;
1408 set_bit(Faulty, &rdev->flags);
1409 spin_unlock_irqrestore(&conf->device_lock, flags);
1410 } else
1411 set_bit(Faulty, &rdev->flags);
1412 /*
1413 * if recovery is running, make sure it aborts.
1414 */
1415 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
1416 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1417 printk(KERN_ALERT
1418 "md/raid1:%s: Disk failure on %s, disabling device.\n"
1419 "md/raid1:%s: Operation continuing on %d devices.\n",
1420 mdname(mddev), bdevname(rdev->bdev, b),
1421 mdname(mddev), conf->raid_disks - mddev->degraded);
1422 }
1423
1424 static void print_conf(struct r1conf *conf)
1425 {
1426 int i;
1427
1428 printk(KERN_DEBUG "RAID1 conf printout:\n");
1429 if (!conf) {
1430 printk(KERN_DEBUG "(!conf)\n");
1431 return;
1432 }
1433 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
1434 conf->raid_disks);
1435
1436 rcu_read_lock();
1437 for (i = 0; i < conf->raid_disks; i++) {
1438 char b[BDEVNAME_SIZE];
1439 struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev);
1440 if (rdev)
1441 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
1442 i, !test_bit(In_sync, &rdev->flags),
1443 !test_bit(Faulty, &rdev->flags),
1444 bdevname(rdev->bdev,b));
1445 }
1446 rcu_read_unlock();
1447 }
1448
1449 static void close_sync(struct r1conf *conf)
1450 {
1451 wait_barrier(conf);
1452 allow_barrier(conf);
1453
1454 mempool_destroy(conf->r1buf_pool);
1455 conf->r1buf_pool = NULL;
1456 }
1457
1458 static int raid1_spare_active(struct mddev *mddev)
1459 {
1460 int i;
1461 struct r1conf *conf = mddev->private;
1462 int count = 0;
1463 unsigned long flags;
1464
1465 /*
1466 * Find all failed disks within the RAID1 configuration
1467 * and mark them readable.
1468 * Called under mddev lock, so rcu protection not needed.
1469 */
1470 for (i = 0; i < conf->raid_disks; i++) {
1471 struct md_rdev *rdev = conf->mirrors[i].rdev;
1472 struct md_rdev *repl = conf->mirrors[conf->raid_disks + i].rdev;
1473 if (repl
1474 && repl->recovery_offset == MaxSector
1475 && !test_bit(Faulty, &repl->flags)
1476 && !test_and_set_bit(In_sync, &repl->flags)) {
1477 /* replacement has just become active */
1478 if (!rdev ||
1479 !test_and_clear_bit(In_sync, &rdev->flags))
1480 count++;
1481 if (rdev) {
1482 /* Replaced device not technically
1483 * faulty, but we need to be sure
1484 * it gets removed and never re-added
1485 */
1486 set_bit(Faulty, &rdev->flags);
1487 sysfs_notify_dirent_safe(
1488 rdev->sysfs_state);
1489 }
1490 }
1491 if (rdev
1492 && rdev->recovery_offset == MaxSector
1493 && !test_bit(Faulty, &rdev->flags)
1494 && !test_and_set_bit(In_sync, &rdev->flags)) {
1495 count++;
1496 sysfs_notify_dirent_safe(rdev->sysfs_state);
1497 }
1498 }
1499 spin_lock_irqsave(&conf->device_lock, flags);
1500 mddev->degraded -= count;
1501 spin_unlock_irqrestore(&conf->device_lock, flags);
1502
1503 print_conf(conf);
1504 return count;
1505 }
1506
1507
1508 static int raid1_add_disk(struct mddev *mddev, struct md_rdev *rdev)
1509 {
1510 struct r1conf *conf = mddev->private;
1511 int err = -EEXIST;
1512 int mirror = 0;
1513 struct raid1_info *p;
1514 int first = 0;
1515 int last = conf->raid_disks - 1;
1516 struct request_queue *q = bdev_get_queue(rdev->bdev);
1517
1518 if (mddev->recovery_disabled == conf->recovery_disabled)
1519 return -EBUSY;
1520
1521 if (rdev->raid_disk >= 0)
1522 first = last = rdev->raid_disk;
1523
1524 if (q->merge_bvec_fn) {
1525 set_bit(Unmerged, &rdev->flags);
1526 mddev->merge_check_needed = 1;
1527 }
1528
1529 for (mirror = first; mirror <= last; mirror++) {
1530 p = conf->mirrors+mirror;
1531 if (!p->rdev) {
1532
1533 disk_stack_limits(mddev->gendisk, rdev->bdev,
1534 rdev->data_offset << 9);
1535
1536 p->head_position = 0;
1537 rdev->raid_disk = mirror;
1538 err = 0;
1539 /* As all devices are equivalent, we don't need a full recovery
1540 * if this was recently any drive of the array
1541 */
1542 if (rdev->saved_raid_disk < 0)
1543 conf->fullsync = 1;
1544 rcu_assign_pointer(p->rdev, rdev);
1545 break;
1546 }
1547 if (test_bit(WantReplacement, &p->rdev->flags) &&
1548 p[conf->raid_disks].rdev == NULL) {
1549 /* Add this device as a replacement */
1550 clear_bit(In_sync, &rdev->flags);
1551 set_bit(Replacement, &rdev->flags);
1552 rdev->raid_disk = mirror;
1553 err = 0;
1554 conf->fullsync = 1;
1555 rcu_assign_pointer(p[conf->raid_disks].rdev, rdev);
1556 break;
1557 }
1558 }
1559 if (err == 0 && test_bit(Unmerged, &rdev->flags)) {
1560 /* Some requests might not have seen this new
1561 * merge_bvec_fn. We must wait for them to complete
1562 * before merging the device fully.
1563 * First we make sure any code which has tested
1564 * our function has submitted the request, then
1565 * we wait for all outstanding requests to complete.
1566 */
1567 synchronize_sched();
1568 freeze_array(conf, 0);
1569 unfreeze_array(conf);
1570 clear_bit(Unmerged, &rdev->flags);
1571 }
1572 md_integrity_add_rdev(rdev, mddev);
1573 if (blk_queue_discard(bdev_get_queue(rdev->bdev)))
1574 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, mddev->queue);
1575 print_conf(conf);
1576 return err;
1577 }
1578
1579 static int raid1_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
1580 {
1581 struct r1conf *conf = mddev->private;
1582 int err = 0;
1583 int number = rdev->raid_disk;
1584 struct raid1_info *p = conf->mirrors + number;
1585
1586 if (rdev != p->rdev)
1587 p = conf->mirrors + conf->raid_disks + number;
1588
1589 print_conf(conf);
1590 if (rdev == p->rdev) {
1591 if (test_bit(In_sync, &rdev->flags) ||
1592 atomic_read(&rdev->nr_pending)) {
1593 err = -EBUSY;
1594 goto abort;
1595 }
1596 /* Only remove non-faulty devices if recovery
1597 * is not possible.
1598 */
1599 if (!test_bit(Faulty, &rdev->flags) &&
1600 mddev->recovery_disabled != conf->recovery_disabled &&
1601 mddev->degraded < conf->raid_disks) {
1602 err = -EBUSY;
1603 goto abort;
1604 }
1605 p->rdev = NULL;
1606 synchronize_rcu();
1607 if (atomic_read(&rdev->nr_pending)) {
1608 /* lost the race, try later */
1609 err = -EBUSY;
1610 p->rdev = rdev;
1611 goto abort;
1612 } else if (conf->mirrors[conf->raid_disks + number].rdev) {
1613 /* We just removed a device that is being replaced.
1614 * Move down the replacement. We drain all IO before
1615 * doing this to avoid confusion.
1616 */
1617 struct md_rdev *repl =
1618 conf->mirrors[conf->raid_disks + number].rdev;
1619 freeze_array(conf, 0);
1620 clear_bit(Replacement, &repl->flags);
1621 p->rdev = repl;
1622 conf->mirrors[conf->raid_disks + number].rdev = NULL;
1623 unfreeze_array(conf);
1624 clear_bit(WantReplacement, &rdev->flags);
1625 } else
1626 clear_bit(WantReplacement, &rdev->flags);
1627 err = md_integrity_register(mddev);
1628 }
1629 abort:
1630
1631 print_conf(conf);
1632 return err;
1633 }
1634
1635
1636 static void end_sync_read(struct bio *bio, int error)
1637 {
1638 struct r1bio *r1_bio = bio->bi_private;
1639
1640 update_head_pos(r1_bio->read_disk, r1_bio);
1641
1642 /*
1643 * we have read a block, now it needs to be re-written,
1644 * or re-read if the read failed.
1645 * We don't do much here, just schedule handling by raid1d
1646 */
1647 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
1648 set_bit(R1BIO_Uptodate, &r1_bio->state);
1649
1650 if (atomic_dec_and_test(&r1_bio->remaining))
1651 reschedule_retry(r1_bio);
1652 }
1653
1654 static void end_sync_write(struct bio *bio, int error)
1655 {
1656 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
1657 struct r1bio *r1_bio = bio->bi_private;
1658 struct mddev *mddev = r1_bio->mddev;
1659 struct r1conf *conf = mddev->private;
1660 int mirror=0;
1661 sector_t first_bad;
1662 int bad_sectors;
1663
1664 mirror = find_bio_disk(r1_bio, bio);
1665
1666 if (!uptodate) {
1667 sector_t sync_blocks = 0;
1668 sector_t s = r1_bio->sector;
1669 long sectors_to_go = r1_bio->sectors;
1670 /* make sure these bits doesn't get cleared. */
1671 do {
1672 bitmap_end_sync(mddev->bitmap, s,
1673 &sync_blocks, 1);
1674 s += sync_blocks;
1675 sectors_to_go -= sync_blocks;
1676 } while (sectors_to_go > 0);
1677 set_bit(WriteErrorSeen,
1678 &conf->mirrors[mirror].rdev->flags);
1679 if (!test_and_set_bit(WantReplacement,
1680 &conf->mirrors[mirror].rdev->flags))
1681 set_bit(MD_RECOVERY_NEEDED, &
1682 mddev->recovery);
1683 set_bit(R1BIO_WriteError, &r1_bio->state);
1684 } else if (is_badblock(conf->mirrors[mirror].rdev,
1685 r1_bio->sector,
1686 r1_bio->sectors,
1687 &first_bad, &bad_sectors) &&
1688 !is_badblock(conf->mirrors[r1_bio->read_disk].rdev,
1689 r1_bio->sector,
1690 r1_bio->sectors,
1691 &first_bad, &bad_sectors)
1692 )
1693 set_bit(R1BIO_MadeGood, &r1_bio->state);
1694
1695 if (atomic_dec_and_test(&r1_bio->remaining)) {
1696 int s = r1_bio->sectors;
1697 if (test_bit(R1BIO_MadeGood, &r1_bio->state) ||
1698 test_bit(R1BIO_WriteError, &r1_bio->state))
1699 reschedule_retry(r1_bio);
1700 else {
1701 put_buf(r1_bio);
1702 md_done_sync(mddev, s, uptodate);
1703 }
1704 }
1705 }
1706
1707 static int r1_sync_page_io(struct md_rdev *rdev, sector_t sector,
1708 int sectors, struct page *page, int rw)
1709 {
1710 if (sync_page_io(rdev, sector, sectors << 9, page, rw, false))
1711 /* success */
1712 return 1;
1713 if (rw == WRITE) {
1714 set_bit(WriteErrorSeen, &rdev->flags);
1715 if (!test_and_set_bit(WantReplacement,
1716 &rdev->flags))
1717 set_bit(MD_RECOVERY_NEEDED, &
1718 rdev->mddev->recovery);
1719 }
1720 /* need to record an error - either for the block or the device */
1721 if (!rdev_set_badblocks(rdev, sector, sectors, 0))
1722 md_error(rdev->mddev, rdev);
1723 return 0;
1724 }
1725
1726 static int fix_sync_read_error(struct r1bio *r1_bio)
1727 {
1728 /* Try some synchronous reads of other devices to get
1729 * good data, much like with normal read errors. Only
1730 * read into the pages we already have so we don't
1731 * need to re-issue the read request.
1732 * We don't need to freeze the array, because being in an
1733 * active sync request, there is no normal IO, and
1734 * no overlapping syncs.
1735 * We don't need to check is_badblock() again as we
1736 * made sure that anything with a bad block in range
1737 * will have bi_end_io clear.
1738 */
1739 struct mddev *mddev = r1_bio->mddev;
1740 struct r1conf *conf = mddev->private;
1741 struct bio *bio = r1_bio->bios[r1_bio->read_disk];
1742 sector_t sect = r1_bio->sector;
1743 int sectors = r1_bio->sectors;
1744 int idx = 0;
1745
1746 while(sectors) {
1747 int s = sectors;
1748 int d = r1_bio->read_disk;
1749 int success = 0;
1750 struct md_rdev *rdev;
1751 int start;
1752
1753 if (s > (PAGE_SIZE>>9))
1754 s = PAGE_SIZE >> 9;
1755 do {
1756 if (r1_bio->bios[d]->bi_end_io == end_sync_read) {
1757 /* No rcu protection needed here devices
1758 * can only be removed when no resync is
1759 * active, and resync is currently active
1760 */
1761 rdev = conf->mirrors[d].rdev;
1762 if (sync_page_io(rdev, sect, s<<9,
1763 bio->bi_io_vec[idx].bv_page,
1764 READ, false)) {
1765 success = 1;
1766 break;
1767 }
1768 }
1769 d++;
1770 if (d == conf->raid_disks * 2)
1771 d = 0;
1772 } while (!success && d != r1_bio->read_disk);
1773
1774 if (!success) {
1775 char b[BDEVNAME_SIZE];
1776 int abort = 0;
1777 /* Cannot read from anywhere, this block is lost.
1778 * Record a bad block on each device. If that doesn't
1779 * work just disable and interrupt the recovery.
1780 * Don't fail devices as that won't really help.
1781 */
1782 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O read error"
1783 " for block %llu\n",
1784 mdname(mddev),
1785 bdevname(bio->bi_bdev, b),
1786 (unsigned long long)r1_bio->sector);
1787 for (d = 0; d < conf->raid_disks * 2; d++) {
1788 rdev = conf->mirrors[d].rdev;
1789 if (!rdev || test_bit(Faulty, &rdev->flags))
1790 continue;
1791 if (!rdev_set_badblocks(rdev, sect, s, 0))
1792 abort = 1;
1793 }
1794 if (abort) {
1795 conf->recovery_disabled =
1796 mddev->recovery_disabled;
1797 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
1798 md_done_sync(mddev, r1_bio->sectors, 0);
1799 put_buf(r1_bio);
1800 return 0;
1801 }
1802 /* Try next page */
1803 sectors -= s;
1804 sect += s;
1805 idx++;
1806 continue;
1807 }
1808
1809 start = d;
1810 /* write it back and re-read */
1811 while (d != r1_bio->read_disk) {
1812 if (d == 0)
1813 d = conf->raid_disks * 2;
1814 d--;
1815 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1816 continue;
1817 rdev = conf->mirrors[d].rdev;
1818 if (r1_sync_page_io(rdev, sect, s,
1819 bio->bi_io_vec[idx].bv_page,
1820 WRITE) == 0) {
1821 r1_bio->bios[d]->bi_end_io = NULL;
1822 rdev_dec_pending(rdev, mddev);
1823 }
1824 }
1825 d = start;
1826 while (d != r1_bio->read_disk) {
1827 if (d == 0)
1828 d = conf->raid_disks * 2;
1829 d--;
1830 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1831 continue;
1832 rdev = conf->mirrors[d].rdev;
1833 if (r1_sync_page_io(rdev, sect, s,
1834 bio->bi_io_vec[idx].bv_page,
1835 READ) != 0)
1836 atomic_add(s, &rdev->corrected_errors);
1837 }
1838 sectors -= s;
1839 sect += s;
1840 idx ++;
1841 }
1842 set_bit(R1BIO_Uptodate, &r1_bio->state);
1843 set_bit(BIO_UPTODATE, &bio->bi_flags);
1844 return 1;
1845 }
1846
1847 static int process_checks(struct r1bio *r1_bio)
1848 {
1849 /* We have read all readable devices. If we haven't
1850 * got the block, then there is no hope left.
1851 * If we have, then we want to do a comparison
1852 * and skip the write if everything is the same.
1853 * If any blocks failed to read, then we need to
1854 * attempt an over-write
1855 */
1856 struct mddev *mddev = r1_bio->mddev;
1857 struct r1conf *conf = mddev->private;
1858 int primary;
1859 int i;
1860 int vcnt;
1861
1862 /* Fix variable parts of all bios */
1863 vcnt = (r1_bio->sectors + PAGE_SIZE / 512 - 1) >> (PAGE_SHIFT - 9);
1864 for (i = 0; i < conf->raid_disks * 2; i++) {
1865 int j;
1866 int size;
1867 int uptodate;
1868 struct bio *b = r1_bio->bios[i];
1869 if (b->bi_end_io != end_sync_read)
1870 continue;
1871 /* fixup the bio for reuse, but preserve BIO_UPTODATE */
1872 uptodate = test_bit(BIO_UPTODATE, &b->bi_flags);
1873 bio_reset(b);
1874 if (!uptodate)
1875 clear_bit(BIO_UPTODATE, &b->bi_flags);
1876 b->bi_vcnt = vcnt;
1877 b->bi_size = r1_bio->sectors << 9;
1878 b->bi_sector = r1_bio->sector +
1879 conf->mirrors[i].rdev->data_offset;
1880 b->bi_bdev = conf->mirrors[i].rdev->bdev;
1881 b->bi_end_io = end_sync_read;
1882 b->bi_private = r1_bio;
1883
1884 size = b->bi_size;
1885 for (j = 0; j < vcnt ; j++) {
1886 struct bio_vec *bi;
1887 bi = &b->bi_io_vec[j];
1888 bi->bv_offset = 0;
1889 if (size > PAGE_SIZE)
1890 bi->bv_len = PAGE_SIZE;
1891 else
1892 bi->bv_len = size;
1893 size -= PAGE_SIZE;
1894 }
1895 }
1896 for (primary = 0; primary < conf->raid_disks * 2; primary++)
1897 if (r1_bio->bios[primary]->bi_end_io == end_sync_read &&
1898 test_bit(BIO_UPTODATE, &r1_bio->bios[primary]->bi_flags)) {
1899 r1_bio->bios[primary]->bi_end_io = NULL;
1900 rdev_dec_pending(conf->mirrors[primary].rdev, mddev);
1901 break;
1902 }
1903 r1_bio->read_disk = primary;
1904 for (i = 0; i < conf->raid_disks * 2; i++) {
1905 int j;
1906 struct bio *pbio = r1_bio->bios[primary];
1907 struct bio *sbio = r1_bio->bios[i];
1908 int uptodate = test_bit(BIO_UPTODATE, &sbio->bi_flags);
1909
1910 if (sbio->bi_end_io != end_sync_read)
1911 continue;
1912 /* Now we can 'fixup' the BIO_UPTODATE flag */
1913 set_bit(BIO_UPTODATE, &sbio->bi_flags);
1914
1915 if (uptodate) {
1916 for (j = vcnt; j-- ; ) {
1917 struct page *p, *s;
1918 p = pbio->bi_io_vec[j].bv_page;
1919 s = sbio->bi_io_vec[j].bv_page;
1920 if (memcmp(page_address(p),
1921 page_address(s),
1922 sbio->bi_io_vec[j].bv_len))
1923 break;
1924 }
1925 } else
1926 j = 0;
1927 if (j >= 0)
1928 atomic64_add(r1_bio->sectors, &mddev->resync_mismatches);
1929 if (j < 0 || (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)
1930 && uptodate)) {
1931 /* No need to write to this device. */
1932 sbio->bi_end_io = NULL;
1933 rdev_dec_pending(conf->mirrors[i].rdev, mddev);
1934 continue;
1935 }
1936
1937 bio_copy_data(sbio, pbio);
1938 }
1939 return 0;
1940 }
1941
1942 static void sync_request_write(struct mddev *mddev, struct r1bio *r1_bio)
1943 {
1944 struct r1conf *conf = mddev->private;
1945 int i;
1946 int disks = conf->raid_disks * 2;
1947 struct bio *bio, *wbio;
1948
1949 bio = r1_bio->bios[r1_bio->read_disk];
1950
1951 if (!test_bit(R1BIO_Uptodate, &r1_bio->state))
1952 /* ouch - failed to read all of that. */
1953 if (!fix_sync_read_error(r1_bio))
1954 return;
1955
1956 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
1957 if (process_checks(r1_bio) < 0)
1958 return;
1959 /*
1960 * schedule writes
1961 */
1962 atomic_set(&r1_bio->remaining, 1);
1963 for (i = 0; i < disks ; i++) {
1964 wbio = r1_bio->bios[i];
1965 if (wbio->bi_end_io == NULL ||
1966 (wbio->bi_end_io == end_sync_read &&
1967 (i == r1_bio->read_disk ||
1968 !test_bit(MD_RECOVERY_SYNC, &mddev->recovery))))
1969 continue;
1970
1971 wbio->bi_rw = WRITE;
1972 wbio->bi_end_io = end_sync_write;
1973 atomic_inc(&r1_bio->remaining);
1974 md_sync_acct(conf->mirrors[i].rdev->bdev, bio_sectors(wbio));
1975
1976 generic_make_request(wbio);
1977 }
1978
1979 if (atomic_dec_and_test(&r1_bio->remaining)) {
1980 /* if we're here, all write(s) have completed, so clean up */
1981 int s = r1_bio->sectors;
1982 if (test_bit(R1BIO_MadeGood, &r1_bio->state) ||
1983 test_bit(R1BIO_WriteError, &r1_bio->state))
1984 reschedule_retry(r1_bio);
1985 else {
1986 put_buf(r1_bio);
1987 md_done_sync(mddev, s, 1);
1988 }
1989 }
1990 }
1991
1992 /*
1993 * This is a kernel thread which:
1994 *
1995 * 1. Retries failed read operations on working mirrors.
1996 * 2. Updates the raid superblock when problems encounter.
1997 * 3. Performs writes following reads for array synchronising.
1998 */
1999
2000 static void fix_read_error(struct r1conf *conf, int read_disk,
2001 sector_t sect, int sectors)
2002 {
2003 struct mddev *mddev = conf->mddev;
2004 while(sectors) {
2005 int s = sectors;
2006 int d = read_disk;
2007 int success = 0;
2008 int start;
2009 struct md_rdev *rdev;
2010
2011 if (s > (PAGE_SIZE>>9))
2012 s = PAGE_SIZE >> 9;
2013
2014 do {
2015 /* Note: no rcu protection needed here
2016 * as this is synchronous in the raid1d thread
2017 * which is the thread that might remove
2018 * a device. If raid1d ever becomes multi-threaded....
2019 */
2020 sector_t first_bad;
2021 int bad_sectors;
2022
2023 rdev = conf->mirrors[d].rdev;
2024 if (rdev &&
2025 (test_bit(In_sync, &rdev->flags) ||
2026 (!test_bit(Faulty, &rdev->flags) &&
2027 rdev->recovery_offset >= sect + s)) &&
2028 is_badblock(rdev, sect, s,
2029 &first_bad, &bad_sectors) == 0 &&
2030 sync_page_io(rdev, sect, s<<9,
2031 conf->tmppage, READ, false))
2032 success = 1;
2033 else {
2034 d++;
2035 if (d == conf->raid_disks * 2)
2036 d = 0;
2037 }
2038 } while (!success && d != read_disk);
2039
2040 if (!success) {
2041 /* Cannot read from anywhere - mark it bad */
2042 struct md_rdev *rdev = conf->mirrors[read_disk].rdev;
2043 if (!rdev_set_badblocks(rdev, sect, s, 0))
2044 md_error(mddev, rdev);
2045 break;
2046 }
2047 /* write it back and re-read */
2048 start = d;
2049 while (d != read_disk) {
2050 if (d==0)
2051 d = conf->raid_disks * 2;
2052 d--;
2053 rdev = conf->mirrors[d].rdev;
2054 if (rdev &&
2055 !test_bit(Faulty, &rdev->flags))
2056 r1_sync_page_io(rdev, sect, s,
2057 conf->tmppage, WRITE);
2058 }
2059 d = start;
2060 while (d != read_disk) {
2061 char b[BDEVNAME_SIZE];
2062 if (d==0)
2063 d = conf->raid_disks * 2;
2064 d--;
2065 rdev = conf->mirrors[d].rdev;
2066 if (rdev &&
2067 !test_bit(Faulty, &rdev->flags)) {
2068 if (r1_sync_page_io(rdev, sect, s,
2069 conf->tmppage, READ)) {
2070 atomic_add(s, &rdev->corrected_errors);
2071 printk(KERN_INFO
2072 "md/raid1:%s: read error corrected "
2073 "(%d sectors at %llu on %s)\n",
2074 mdname(mddev), s,
2075 (unsigned long long)(sect +
2076 rdev->data_offset),
2077 bdevname(rdev->bdev, b));
2078 }
2079 }
2080 }
2081 sectors -= s;
2082 sect += s;
2083 }
2084 }
2085
2086 static int narrow_write_error(struct r1bio *r1_bio, int i)
2087 {
2088 struct mddev *mddev = r1_bio->mddev;
2089 struct r1conf *conf = mddev->private;
2090 struct md_rdev *rdev = conf->mirrors[i].rdev;
2091
2092 /* bio has the data to be written to device 'i' where
2093 * we just recently had a write error.
2094 * We repeatedly clone the bio and trim down to one block,
2095 * then try the write. Where the write fails we record
2096 * a bad block.
2097 * It is conceivable that the bio doesn't exactly align with
2098 * blocks. We must handle this somehow.
2099 *
2100 * We currently own a reference on the rdev.
2101 */
2102
2103 int block_sectors;
2104 sector_t sector;
2105 int sectors;
2106 int sect_to_write = r1_bio->sectors;
2107 int ok = 1;
2108
2109 if (rdev->badblocks.shift < 0)
2110 return 0;
2111
2112 block_sectors = 1 << rdev->badblocks.shift;
2113 sector = r1_bio->sector;
2114 sectors = ((sector + block_sectors)
2115 & ~(sector_t)(block_sectors - 1))
2116 - sector;
2117
2118 while (sect_to_write) {
2119 struct bio *wbio;
2120 if (sectors > sect_to_write)
2121 sectors = sect_to_write;
2122 /* Write at 'sector' for 'sectors'*/
2123
2124 if (test_bit(R1BIO_BehindIO, &r1_bio->state)) {
2125 unsigned vcnt = r1_bio->behind_page_count;
2126 struct bio_vec *vec = r1_bio->behind_bvecs;
2127
2128 while (!vec->bv_page) {
2129 vec++;
2130 vcnt--;
2131 }
2132
2133 wbio = bio_alloc_mddev(GFP_NOIO, vcnt, mddev);
2134 memcpy(wbio->bi_io_vec, vec, vcnt * sizeof(struct bio_vec));
2135
2136 wbio->bi_vcnt = vcnt;
2137 } else {
2138 wbio = bio_clone_mddev(r1_bio->master_bio, GFP_NOIO, mddev);
2139 }
2140
2141 wbio->bi_rw = WRITE;
2142 wbio->bi_sector = r1_bio->sector;
2143 wbio->bi_size = r1_bio->sectors << 9;
2144
2145 md_trim_bio(wbio, sector - r1_bio->sector, sectors);
2146 wbio->bi_sector += rdev->data_offset;
2147 wbio->bi_bdev = rdev->bdev;
2148 if (submit_bio_wait(WRITE, wbio) == 0)
2149 /* failure! */
2150 ok = rdev_set_badblocks(rdev, sector,
2151 sectors, 0)
2152 && ok;
2153
2154 bio_put(wbio);
2155 sect_to_write -= sectors;
2156 sector += sectors;
2157 sectors = block_sectors;
2158 }
2159 return ok;
2160 }
2161
2162 static void handle_sync_write_finished(struct r1conf *conf, struct r1bio *r1_bio)
2163 {
2164 int m;
2165 int s = r1_bio->sectors;
2166 for (m = 0; m < conf->raid_disks * 2 ; m++) {
2167 struct md_rdev *rdev = conf->mirrors[m].rdev;
2168 struct bio *bio = r1_bio->bios[m];
2169 if (bio->bi_end_io == NULL)
2170 continue;
2171 if (test_bit(BIO_UPTODATE, &bio->bi_flags) &&
2172 test_bit(R1BIO_MadeGood, &r1_bio->state)) {
2173 rdev_clear_badblocks(rdev, r1_bio->sector, s, 0);
2174 }
2175 if (!test_bit(BIO_UPTODATE, &bio->bi_flags) &&
2176 test_bit(R1BIO_WriteError, &r1_bio->state)) {
2177 if (!rdev_set_badblocks(rdev, r1_bio->sector, s, 0))
2178 md_error(conf->mddev, rdev);
2179 }
2180 }
2181 put_buf(r1_bio);
2182 md_done_sync(conf->mddev, s, 1);
2183 }
2184
2185 static void handle_write_finished(struct r1conf *conf, struct r1bio *r1_bio)
2186 {
2187 int m;
2188 for (m = 0; m < conf->raid_disks * 2 ; m++)
2189 if (r1_bio->bios[m] == IO_MADE_GOOD) {
2190 struct md_rdev *rdev = conf->mirrors[m].rdev;
2191 rdev_clear_badblocks(rdev,
2192 r1_bio->sector,
2193 r1_bio->sectors, 0);
2194 rdev_dec_pending(rdev, conf->mddev);
2195 } else if (r1_bio->bios[m] != NULL) {
2196 /* This drive got a write error. We need to
2197 * narrow down and record precise write
2198 * errors.
2199 */
2200 if (!narrow_write_error(r1_bio, m)) {
2201 md_error(conf->mddev,
2202 conf->mirrors[m].rdev);
2203 /* an I/O failed, we can't clear the bitmap */
2204 set_bit(R1BIO_Degraded, &r1_bio->state);
2205 }
2206 rdev_dec_pending(conf->mirrors[m].rdev,
2207 conf->mddev);
2208 }
2209 if (test_bit(R1BIO_WriteError, &r1_bio->state))
2210 close_write(r1_bio);
2211 raid_end_bio_io(r1_bio);
2212 }
2213
2214 static void handle_read_error(struct r1conf *conf, struct r1bio *r1_bio)
2215 {
2216 int disk;
2217 int max_sectors;
2218 struct mddev *mddev = conf->mddev;
2219 struct bio *bio;
2220 char b[BDEVNAME_SIZE];
2221 struct md_rdev *rdev;
2222
2223 clear_bit(R1BIO_ReadError, &r1_bio->state);
2224 /* we got a read error. Maybe the drive is bad. Maybe just
2225 * the block and we can fix it.
2226 * We freeze all other IO, and try reading the block from
2227 * other devices. When we find one, we re-write
2228 * and check it that fixes the read error.
2229 * This is all done synchronously while the array is
2230 * frozen
2231 */
2232 if (mddev->ro == 0) {
2233 freeze_array(conf, 1);
2234 fix_read_error(conf, r1_bio->read_disk,
2235 r1_bio->sector, r1_bio->sectors);
2236 unfreeze_array(conf);
2237 } else
2238 md_error(mddev, conf->mirrors[r1_bio->read_disk].rdev);
2239 rdev_dec_pending(conf->mirrors[r1_bio->read_disk].rdev, conf->mddev);
2240
2241 bio = r1_bio->bios[r1_bio->read_disk];
2242 bdevname(bio->bi_bdev, b);
2243 read_more:
2244 disk = read_balance(conf, r1_bio, &max_sectors);
2245 if (disk == -1) {
2246 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O"
2247 " read error for block %llu\n",
2248 mdname(mddev), b, (unsigned long long)r1_bio->sector);
2249 raid_end_bio_io(r1_bio);
2250 } else {
2251 const unsigned long do_sync
2252 = r1_bio->master_bio->bi_rw & REQ_SYNC;
2253 if (bio) {
2254 r1_bio->bios[r1_bio->read_disk] =
2255 mddev->ro ? IO_BLOCKED : NULL;
2256 bio_put(bio);
2257 }
2258 r1_bio->read_disk = disk;
2259 bio = bio_clone_mddev(r1_bio->master_bio, GFP_NOIO, mddev);
2260 md_trim_bio(bio, r1_bio->sector - bio->bi_sector, max_sectors);
2261 r1_bio->bios[r1_bio->read_disk] = bio;
2262 rdev = conf->mirrors[disk].rdev;
2263 printk_ratelimited(KERN_ERR
2264 "md/raid1:%s: redirecting sector %llu"
2265 " to other mirror: %s\n",
2266 mdname(mddev),
2267 (unsigned long long)r1_bio->sector,
2268 bdevname(rdev->bdev, b));
2269 bio->bi_sector = r1_bio->sector + rdev->data_offset;
2270 bio->bi_bdev = rdev->bdev;
2271 bio->bi_end_io = raid1_end_read_request;
2272 bio->bi_rw = READ | do_sync;
2273 bio->bi_private = r1_bio;
2274 if (max_sectors < r1_bio->sectors) {
2275 /* Drat - have to split this up more */
2276 struct bio *mbio = r1_bio->master_bio;
2277 int sectors_handled = (r1_bio->sector + max_sectors
2278 - mbio->bi_sector);
2279 r1_bio->sectors = max_sectors;
2280 spin_lock_irq(&conf->device_lock);
2281 if (mbio->bi_phys_segments == 0)
2282 mbio->bi_phys_segments = 2;
2283 else
2284 mbio->bi_phys_segments++;
2285 spin_unlock_irq(&conf->device_lock);
2286 generic_make_request(bio);
2287 bio = NULL;
2288
2289 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
2290
2291 r1_bio->master_bio = mbio;
2292 r1_bio->sectors = bio_sectors(mbio) - sectors_handled;
2293 r1_bio->state = 0;
2294 set_bit(R1BIO_ReadError, &r1_bio->state);
2295 r1_bio->mddev = mddev;
2296 r1_bio->sector = mbio->bi_sector + sectors_handled;
2297
2298 goto read_more;
2299 } else
2300 generic_make_request(bio);
2301 }
2302 }
2303
2304 static void raid1d(struct md_thread *thread)
2305 {
2306 struct mddev *mddev = thread->mddev;
2307 struct r1bio *r1_bio;
2308 unsigned long flags;
2309 struct r1conf *conf = mddev->private;
2310 struct list_head *head = &conf->retry_list;
2311 struct blk_plug plug;
2312
2313 md_check_recovery(mddev);
2314
2315 blk_start_plug(&plug);
2316 for (;;) {
2317
2318 flush_pending_writes(conf);
2319
2320 spin_lock_irqsave(&conf->device_lock, flags);
2321 if (list_empty(head)) {
2322 spin_unlock_irqrestore(&conf->device_lock, flags);
2323 break;
2324 }
2325 r1_bio = list_entry(head->prev, struct r1bio, retry_list);
2326 list_del(head->prev);
2327 conf->nr_queued--;
2328 spin_unlock_irqrestore(&conf->device_lock, flags);
2329
2330 mddev = r1_bio->mddev;
2331 conf = mddev->private;
2332 if (test_bit(R1BIO_IsSync, &r1_bio->state)) {
2333 if (test_bit(R1BIO_MadeGood, &r1_bio->state) ||
2334 test_bit(R1BIO_WriteError, &r1_bio->state))
2335 handle_sync_write_finished(conf, r1_bio);
2336 else
2337 sync_request_write(mddev, r1_bio);
2338 } else if (test_bit(R1BIO_MadeGood, &r1_bio->state) ||
2339 test_bit(R1BIO_WriteError, &r1_bio->state))
2340 handle_write_finished(conf, r1_bio);
2341 else if (test_bit(R1BIO_ReadError, &r1_bio->state))
2342 handle_read_error(conf, r1_bio);
2343 else
2344 /* just a partial read to be scheduled from separate
2345 * context
2346 */
2347 generic_make_request(r1_bio->bios[r1_bio->read_disk]);
2348
2349 cond_resched();
2350 if (mddev->flags & ~(1<<MD_CHANGE_PENDING))
2351 md_check_recovery(mddev);
2352 }
2353 blk_finish_plug(&plug);
2354 }
2355
2356
2357 static int init_resync(struct r1conf *conf)
2358 {
2359 int buffs;
2360
2361 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
2362 BUG_ON(conf->r1buf_pool);
2363 conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free,
2364 conf->poolinfo);
2365 if (!conf->r1buf_pool)
2366 return -ENOMEM;
2367 conf->next_resync = 0;
2368 return 0;
2369 }
2370
2371 /*
2372 * perform a "sync" on one "block"
2373 *
2374 * We need to make sure that no normal I/O request - particularly write
2375 * requests - conflict with active sync requests.
2376 *
2377 * This is achieved by tracking pending requests and a 'barrier' concept
2378 * that can be installed to exclude normal IO requests.
2379 */
2380
2381 static sector_t sync_request(struct mddev *mddev, sector_t sector_nr, int *skipped, int go_faster)
2382 {
2383 struct r1conf *conf = mddev->private;
2384 struct r1bio *r1_bio;
2385 struct bio *bio;
2386 sector_t max_sector, nr_sectors;
2387 int disk = -1;
2388 int i;
2389 int wonly = -1;
2390 int write_targets = 0, read_targets = 0;
2391 sector_t sync_blocks;
2392 int still_degraded = 0;
2393 int good_sectors = RESYNC_SECTORS;
2394 int min_bad = 0; /* number of sectors that are bad in all devices */
2395
2396 if (!conf->r1buf_pool)
2397 if (init_resync(conf))
2398 return 0;
2399
2400 max_sector = mddev->dev_sectors;
2401 if (sector_nr >= max_sector) {
2402 /* If we aborted, we need to abort the
2403 * sync on the 'current' bitmap chunk (there will
2404 * only be one in raid1 resync.
2405 * We can find the current addess in mddev->curr_resync
2406 */
2407 if (mddev->curr_resync < max_sector) /* aborted */
2408 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
2409 &sync_blocks, 1);
2410 else /* completed sync */
2411 conf->fullsync = 0;
2412
2413 bitmap_close_sync(mddev->bitmap);
2414 close_sync(conf);
2415 return 0;
2416 }
2417
2418 if (mddev->bitmap == NULL &&
2419 mddev->recovery_cp == MaxSector &&
2420 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
2421 conf->fullsync == 0) {
2422 *skipped = 1;
2423 return max_sector - sector_nr;
2424 }
2425 /* before building a request, check if we can skip these blocks..
2426 * This call the bitmap_start_sync doesn't actually record anything
2427 */
2428 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
2429 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
2430 /* We can skip this block, and probably several more */
2431 *skipped = 1;
2432 return sync_blocks;
2433 }
2434 /*
2435 * If there is non-resync activity waiting for a turn,
2436 * and resync is going fast enough,
2437 * then let it though before starting on this new sync request.
2438 */
2439 if (!go_faster && conf->nr_waiting)
2440 msleep_interruptible(1000);
2441
2442 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
2443 r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO);
2444 raise_barrier(conf);
2445
2446 conf->next_resync = sector_nr;
2447
2448 rcu_read_lock();
2449 /*
2450 * If we get a correctably read error during resync or recovery,
2451 * we might want to read from a different device. So we
2452 * flag all drives that could conceivably be read from for READ,
2453 * and any others (which will be non-In_sync devices) for WRITE.
2454 * If a read fails, we try reading from something else for which READ
2455 * is OK.
2456 */
2457
2458 r1_bio->mddev = mddev;
2459 r1_bio->sector = sector_nr;
2460 r1_bio->state = 0;
2461 set_bit(R1BIO_IsSync, &r1_bio->state);
2462
2463 for (i = 0; i < conf->raid_disks * 2; i++) {
2464 struct md_rdev *rdev;
2465 bio = r1_bio->bios[i];
2466 bio_reset(bio);
2467
2468 rdev = rcu_dereference(conf->mirrors[i].rdev);
2469 if (rdev == NULL ||
2470 test_bit(Faulty, &rdev->flags)) {
2471 if (i < conf->raid_disks)
2472 still_degraded = 1;
2473 } else if (!test_bit(In_sync, &rdev->flags)) {
2474 bio->bi_rw = WRITE;
2475 bio->bi_end_io = end_sync_write;
2476 write_targets ++;
2477 } else {
2478 /* may need to read from here */
2479 sector_t first_bad = MaxSector;
2480 int bad_sectors;
2481
2482 if (is_badblock(rdev, sector_nr, good_sectors,
2483 &first_bad, &bad_sectors)) {
2484 if (first_bad > sector_nr)
2485 good_sectors = first_bad - sector_nr;
2486 else {
2487 bad_sectors -= (sector_nr - first_bad);
2488 if (min_bad == 0 ||
2489 min_bad > bad_sectors)
2490 min_bad = bad_sectors;
2491 }
2492 }
2493 if (sector_nr < first_bad) {
2494 if (test_bit(WriteMostly, &rdev->flags)) {
2495 if (wonly < 0)
2496 wonly = i;
2497 } else {
2498 if (disk < 0)
2499 disk = i;
2500 }
2501 bio->bi_rw = READ;
2502 bio->bi_end_io = end_sync_read;
2503 read_targets++;
2504 } else if (!test_bit(WriteErrorSeen, &rdev->flags) &&
2505 test_bit(MD_RECOVERY_SYNC, &mddev->recovery) &&
2506 !test_bit(MD_RECOVERY_CHECK, &mddev->recovery)) {
2507 /*
2508 * The device is suitable for reading (InSync),
2509 * but has bad block(s) here. Let's try to correct them,
2510 * if we are doing resync or repair. Otherwise, leave
2511 * this device alone for this sync request.
2512 */
2513 bio->bi_rw = WRITE;
2514 bio->bi_end_io = end_sync_write;
2515 write_targets++;
2516 }
2517 }
2518 if (bio->bi_end_io) {
2519 atomic_inc(&rdev->nr_pending);
2520 bio->bi_sector = sector_nr + rdev->data_offset;
2521 bio->bi_bdev = rdev->bdev;
2522 bio->bi_private = r1_bio;
2523 }
2524 }
2525 rcu_read_unlock();
2526 if (disk < 0)
2527 disk = wonly;
2528 r1_bio->read_disk = disk;
2529
2530 if (read_targets == 0 && min_bad > 0) {
2531 /* These sectors are bad on all InSync devices, so we
2532 * need to mark them bad on all write targets
2533 */
2534 int ok = 1;
2535 for (i = 0 ; i < conf->raid_disks * 2 ; i++)
2536 if (r1_bio->bios[i]->bi_end_io == end_sync_write) {
2537 struct md_rdev *rdev = conf->mirrors[i].rdev;
2538 ok = rdev_set_badblocks(rdev, sector_nr,
2539 min_bad, 0
2540 ) && ok;
2541 }
2542 set_bit(MD_CHANGE_DEVS, &mddev->flags);
2543 *skipped = 1;
2544 put_buf(r1_bio);
2545
2546 if (!ok) {
2547 /* Cannot record the badblocks, so need to
2548 * abort the resync.
2549 * If there are multiple read targets, could just
2550 * fail the really bad ones ???
2551 */
2552 conf->recovery_disabled = mddev->recovery_disabled;
2553 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
2554 return 0;
2555 } else
2556 return min_bad;
2557
2558 }
2559 if (min_bad > 0 && min_bad < good_sectors) {
2560 /* only resync enough to reach the next bad->good
2561 * transition */
2562 good_sectors = min_bad;
2563 }
2564
2565 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0)
2566 /* extra read targets are also write targets */
2567 write_targets += read_targets-1;
2568
2569 if (write_targets == 0 || read_targets == 0) {
2570 /* There is nowhere to write, so all non-sync
2571 * drives must be failed - so we are finished
2572 */
2573 sector_t rv;
2574 if (min_bad > 0)
2575 max_sector = sector_nr + min_bad;
2576 rv = max_sector - sector_nr;
2577 *skipped = 1;
2578 put_buf(r1_bio);
2579 return rv;
2580 }
2581
2582 if (max_sector > mddev->resync_max)
2583 max_sector = mddev->resync_max; /* Don't do IO beyond here */
2584 if (max_sector > sector_nr + good_sectors)
2585 max_sector = sector_nr + good_sectors;
2586 nr_sectors = 0;
2587 sync_blocks = 0;
2588 do {
2589 struct page *page;
2590 int len = PAGE_SIZE;
2591 if (sector_nr + (len>>9) > max_sector)
2592 len = (max_sector - sector_nr) << 9;
2593 if (len == 0)
2594 break;
2595 if (sync_blocks == 0) {
2596 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
2597 &sync_blocks, still_degraded) &&
2598 !conf->fullsync &&
2599 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
2600 break;
2601 BUG_ON(sync_blocks < (PAGE_SIZE>>9));
2602 if ((len >> 9) > sync_blocks)
2603 len = sync_blocks<<9;
2604 }
2605
2606 for (i = 0 ; i < conf->raid_disks * 2; i++) {
2607 bio = r1_bio->bios[i];
2608 if (bio->bi_end_io) {
2609 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
2610 if (bio_add_page(bio, page, len, 0) == 0) {
2611 /* stop here */
2612 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
2613 while (i > 0) {
2614 i--;
2615 bio = r1_bio->bios[i];
2616 if (bio->bi_end_io==NULL)
2617 continue;
2618 /* remove last page from this bio */
2619 bio->bi_vcnt--;
2620 bio->bi_size -= len;
2621 bio->bi_flags &= ~(1<< BIO_SEG_VALID);
2622 }
2623 goto bio_full;
2624 }
2625 }
2626 }
2627 nr_sectors += len>>9;
2628 sector_nr += len>>9;
2629 sync_blocks -= (len>>9);
2630 } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES);
2631 bio_full:
2632 r1_bio->sectors = nr_sectors;
2633
2634 /* For a user-requested sync, we read all readable devices and do a
2635 * compare
2636 */
2637 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
2638 atomic_set(&r1_bio->remaining, read_targets);
2639 for (i = 0; i < conf->raid_disks * 2 && read_targets; i++) {
2640 bio = r1_bio->bios[i];
2641 if (bio->bi_end_io == end_sync_read) {
2642 read_targets--;
2643 md_sync_acct(bio->bi_bdev, nr_sectors);
2644 generic_make_request(bio);
2645 }
2646 }
2647 } else {
2648 atomic_set(&r1_bio->remaining, 1);
2649 bio = r1_bio->bios[r1_bio->read_disk];
2650 md_sync_acct(bio->bi_bdev, nr_sectors);
2651 generic_make_request(bio);
2652
2653 }
2654 return nr_sectors;
2655 }
2656
2657 static sector_t raid1_size(struct mddev *mddev, sector_t sectors, int raid_disks)
2658 {
2659 if (sectors)
2660 return sectors;
2661
2662 return mddev->dev_sectors;
2663 }
2664
2665 static struct r1conf *setup_conf(struct mddev *mddev)
2666 {
2667 struct r1conf *conf;
2668 int i;
2669 struct raid1_info *disk;
2670 struct md_rdev *rdev;
2671 int err = -ENOMEM;
2672
2673 conf = kzalloc(sizeof(struct r1conf), GFP_KERNEL);
2674 if (!conf)
2675 goto abort;
2676
2677 conf->mirrors = kzalloc(sizeof(struct raid1_info)
2678 * mddev->raid_disks * 2,
2679 GFP_KERNEL);
2680 if (!conf->mirrors)
2681 goto abort;
2682
2683 conf->tmppage = alloc_page(GFP_KERNEL);
2684 if (!conf->tmppage)
2685 goto abort;
2686
2687 conf->poolinfo = kzalloc(sizeof(*conf->poolinfo), GFP_KERNEL);
2688 if (!conf->poolinfo)
2689 goto abort;
2690 conf->poolinfo->raid_disks = mddev->raid_disks * 2;
2691 conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2692 r1bio_pool_free,
2693 conf->poolinfo);
2694 if (!conf->r1bio_pool)
2695 goto abort;
2696
2697 conf->poolinfo->mddev = mddev;
2698
2699 err = -EINVAL;
2700 spin_lock_init(&conf->device_lock);
2701 rdev_for_each(rdev, mddev) {
2702 struct request_queue *q;
2703 int disk_idx = rdev->raid_disk;
2704 if (disk_idx >= mddev->raid_disks
2705 || disk_idx < 0)
2706 continue;
2707 if (test_bit(Replacement, &rdev->flags))
2708 disk = conf->mirrors + mddev->raid_disks + disk_idx;
2709 else
2710 disk = conf->mirrors + disk_idx;
2711
2712 if (disk->rdev)
2713 goto abort;
2714 disk->rdev = rdev;
2715 q = bdev_get_queue(rdev->bdev);
2716 if (q->merge_bvec_fn)
2717 mddev->merge_check_needed = 1;
2718
2719 disk->head_position = 0;
2720 disk->seq_start = MaxSector;
2721 }
2722 conf->raid_disks = mddev->raid_disks;
2723 conf->mddev = mddev;
2724 INIT_LIST_HEAD(&conf->retry_list);
2725
2726 spin_lock_init(&conf->resync_lock);
2727 init_waitqueue_head(&conf->wait_barrier);
2728
2729 bio_list_init(&conf->pending_bio_list);
2730 conf->pending_count = 0;
2731 conf->recovery_disabled = mddev->recovery_disabled - 1;
2732
2733 err = -EIO;
2734 for (i = 0; i < conf->raid_disks * 2; i++) {
2735
2736 disk = conf->mirrors + i;
2737
2738 if (i < conf->raid_disks &&
2739 disk[conf->raid_disks].rdev) {
2740 /* This slot has a replacement. */
2741 if (!disk->rdev) {
2742 /* No original, just make the replacement
2743 * a recovering spare
2744 */
2745 disk->rdev =
2746 disk[conf->raid_disks].rdev;
2747 disk[conf->raid_disks].rdev = NULL;
2748 } else if (!test_bit(In_sync, &disk->rdev->flags))
2749 /* Original is not in_sync - bad */
2750 goto abort;
2751 }
2752
2753 if (!disk->rdev ||
2754 !test_bit(In_sync, &disk->rdev->flags)) {
2755 disk->head_position = 0;
2756 if (disk->rdev &&
2757 (disk->rdev->saved_raid_disk < 0))
2758 conf->fullsync = 1;
2759 }
2760 }
2761
2762 err = -ENOMEM;
2763 conf->thread = md_register_thread(raid1d, mddev, "raid1");
2764 if (!conf->thread) {
2765 printk(KERN_ERR
2766 "md/raid1:%s: couldn't allocate thread\n",
2767 mdname(mddev));
2768 goto abort;
2769 }
2770
2771 return conf;
2772
2773 abort:
2774 if (conf) {
2775 if (conf->r1bio_pool)
2776 mempool_destroy(conf->r1bio_pool);
2777 kfree(conf->mirrors);
2778 safe_put_page(conf->tmppage);
2779 kfree(conf->poolinfo);
2780 kfree(conf);
2781 }
2782 return ERR_PTR(err);
2783 }
2784
2785 static int stop(struct mddev *mddev);
2786 static int run(struct mddev *mddev)
2787 {
2788 struct r1conf *conf;
2789 int i;
2790 struct md_rdev *rdev;
2791 int ret;
2792 bool discard_supported = false;
2793
2794 if (mddev->level != 1) {
2795 printk(KERN_ERR "md/raid1:%s: raid level not set to mirroring (%d)\n",
2796 mdname(mddev), mddev->level);
2797 return -EIO;
2798 }
2799 if (mddev->reshape_position != MaxSector) {
2800 printk(KERN_ERR "md/raid1:%s: reshape_position set but not supported\n",
2801 mdname(mddev));
2802 return -EIO;
2803 }
2804 /*
2805 * copy the already verified devices into our private RAID1
2806 * bookkeeping area. [whatever we allocate in run(),
2807 * should be freed in stop()]
2808 */
2809 if (mddev->private == NULL)
2810 conf = setup_conf(mddev);
2811 else
2812 conf = mddev->private;
2813
2814 if (IS_ERR(conf))
2815 return PTR_ERR(conf);
2816
2817 if (mddev->queue)
2818 blk_queue_max_write_same_sectors(mddev->queue, 0);
2819
2820 rdev_for_each(rdev, mddev) {
2821 if (!mddev->gendisk)
2822 continue;
2823 disk_stack_limits(mddev->gendisk, rdev->bdev,
2824 rdev->data_offset << 9);
2825 if (blk_queue_discard(bdev_get_queue(rdev->bdev)))
2826 discard_supported = true;
2827 }
2828
2829 mddev->degraded = 0;
2830 for (i=0; i < conf->raid_disks; i++)
2831 if (conf->mirrors[i].rdev == NULL ||
2832 !test_bit(In_sync, &conf->mirrors[i].rdev->flags) ||
2833 test_bit(Faulty, &conf->mirrors[i].rdev->flags))
2834 mddev->degraded++;
2835
2836 if (conf->raid_disks - mddev->degraded == 1)
2837 mddev->recovery_cp = MaxSector;
2838
2839 if (mddev->recovery_cp != MaxSector)
2840 printk(KERN_NOTICE "md/raid1:%s: not clean"
2841 " -- starting background reconstruction\n",
2842 mdname(mddev));
2843 printk(KERN_INFO
2844 "md/raid1:%s: active with %d out of %d mirrors\n",
2845 mdname(mddev), mddev->raid_disks - mddev->degraded,
2846 mddev->raid_disks);
2847
2848 /*
2849 * Ok, everything is just fine now
2850 */
2851 mddev->thread = conf->thread;
2852 conf->thread = NULL;
2853 mddev->private = conf;
2854
2855 md_set_array_sectors(mddev, raid1_size(mddev, 0, 0));
2856
2857 if (mddev->queue) {
2858 mddev->queue->backing_dev_info.congested_fn = raid1_congested;
2859 mddev->queue->backing_dev_info.congested_data = mddev;
2860 blk_queue_merge_bvec(mddev->queue, raid1_mergeable_bvec);
2861
2862 if (discard_supported)
2863 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
2864 mddev->queue);
2865 else
2866 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
2867 mddev->queue);
2868 }
2869
2870 ret = md_integrity_register(mddev);
2871 if (ret)
2872 stop(mddev);
2873 return ret;
2874 }
2875
2876 static int stop(struct mddev *mddev)
2877 {
2878 struct r1conf *conf = mddev->private;
2879 struct bitmap *bitmap = mddev->bitmap;
2880
2881 /* wait for behind writes to complete */
2882 if (bitmap && atomic_read(&bitmap->behind_writes) > 0) {
2883 printk(KERN_INFO "md/raid1:%s: behind writes in progress - waiting to stop.\n",
2884 mdname(mddev));
2885 /* need to kick something here to make sure I/O goes? */
2886 wait_event(bitmap->behind_wait,
2887 atomic_read(&bitmap->behind_writes) == 0);
2888 }
2889
2890 raise_barrier(conf);
2891 lower_barrier(conf);
2892
2893 md_unregister_thread(&mddev->thread);
2894 if (conf->r1bio_pool)
2895 mempool_destroy(conf->r1bio_pool);
2896 kfree(conf->mirrors);
2897 safe_put_page(conf->tmppage);
2898 kfree(conf->poolinfo);
2899 kfree(conf);
2900 mddev->private = NULL;
2901 return 0;
2902 }
2903
2904 static int raid1_resize(struct mddev *mddev, sector_t sectors)
2905 {
2906 /* no resync is happening, and there is enough space
2907 * on all devices, so we can resize.
2908 * We need to make sure resync covers any new space.
2909 * If the array is shrinking we should possibly wait until
2910 * any io in the removed space completes, but it hardly seems
2911 * worth it.
2912 */
2913 sector_t newsize = raid1_size(mddev, sectors, 0);
2914 if (mddev->external_size &&
2915 mddev->array_sectors > newsize)
2916 return -EINVAL;
2917 if (mddev->bitmap) {
2918 int ret = bitmap_resize(mddev->bitmap, newsize, 0, 0);
2919 if (ret)
2920 return ret;
2921 }
2922 md_set_array_sectors(mddev, newsize);
2923 set_capacity(mddev->gendisk, mddev->array_sectors);
2924 revalidate_disk(mddev->gendisk);
2925 if (sectors > mddev->dev_sectors &&
2926 mddev->recovery_cp > mddev->dev_sectors) {
2927 mddev->recovery_cp = mddev->dev_sectors;
2928 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2929 }
2930 mddev->dev_sectors = sectors;
2931 mddev->resync_max_sectors = sectors;
2932 return 0;
2933 }
2934
2935 static int raid1_reshape(struct mddev *mddev)
2936 {
2937 /* We need to:
2938 * 1/ resize the r1bio_pool
2939 * 2/ resize conf->mirrors
2940 *
2941 * We allocate a new r1bio_pool if we can.
2942 * Then raise a device barrier and wait until all IO stops.
2943 * Then resize conf->mirrors and swap in the new r1bio pool.
2944 *
2945 * At the same time, we "pack" the devices so that all the missing
2946 * devices have the higher raid_disk numbers.
2947 */
2948 mempool_t *newpool, *oldpool;
2949 struct pool_info *newpoolinfo;
2950 struct raid1_info *newmirrors;
2951 struct r1conf *conf = mddev->private;
2952 int cnt, raid_disks;
2953 unsigned long flags;
2954 int d, d2, err;
2955
2956 /* Cannot change chunk_size, layout, or level */
2957 if (mddev->chunk_sectors != mddev->new_chunk_sectors ||
2958 mddev->layout != mddev->new_layout ||
2959 mddev->level != mddev->new_level) {
2960 mddev->new_chunk_sectors = mddev->chunk_sectors;
2961 mddev->new_layout = mddev->layout;
2962 mddev->new_level = mddev->level;
2963 return -EINVAL;
2964 }
2965
2966 err = md_allow_write(mddev);
2967 if (err)
2968 return err;
2969
2970 raid_disks = mddev->raid_disks + mddev->delta_disks;
2971
2972 if (raid_disks < conf->raid_disks) {
2973 cnt=0;
2974 for (d= 0; d < conf->raid_disks; d++)
2975 if (conf->mirrors[d].rdev)
2976 cnt++;
2977 if (cnt > raid_disks)
2978 return -EBUSY;
2979 }
2980
2981 newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL);
2982 if (!newpoolinfo)
2983 return -ENOMEM;
2984 newpoolinfo->mddev = mddev;
2985 newpoolinfo->raid_disks = raid_disks * 2;
2986
2987 newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2988 r1bio_pool_free, newpoolinfo);
2989 if (!newpool) {
2990 kfree(newpoolinfo);
2991 return -ENOMEM;
2992 }
2993 newmirrors = kzalloc(sizeof(struct raid1_info) * raid_disks * 2,
2994 GFP_KERNEL);
2995 if (!newmirrors) {
2996 kfree(newpoolinfo);
2997 mempool_destroy(newpool);
2998 return -ENOMEM;
2999 }
3000
3001 freeze_array(conf, 0);
3002
3003 /* ok, everything is stopped */
3004 oldpool = conf->r1bio_pool;
3005 conf->r1bio_pool = newpool;
3006
3007 for (d = d2 = 0; d < conf->raid_disks; d++) {
3008 struct md_rdev *rdev = conf->mirrors[d].rdev;
3009 if (rdev && rdev->raid_disk != d2) {
3010 sysfs_unlink_rdev(mddev, rdev);
3011 rdev->raid_disk = d2;
3012 sysfs_unlink_rdev(mddev, rdev);
3013 if (sysfs_link_rdev(mddev, rdev))
3014 printk(KERN_WARNING
3015 "md/raid1:%s: cannot register rd%d\n",
3016 mdname(mddev), rdev->raid_disk);
3017 }
3018 if (rdev)
3019 newmirrors[d2++].rdev = rdev;
3020 }
3021 kfree(conf->mirrors);
3022 conf->mirrors = newmirrors;
3023 kfree(conf->poolinfo);
3024 conf->poolinfo = newpoolinfo;
3025
3026 spin_lock_irqsave(&conf->device_lock, flags);
3027 mddev->degraded += (raid_disks - conf->raid_disks);
3028 spin_unlock_irqrestore(&conf->device_lock, flags);
3029 conf->raid_disks = mddev->raid_disks = raid_disks;
3030 mddev->delta_disks = 0;
3031
3032 unfreeze_array(conf);
3033
3034 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
3035 md_wakeup_thread(mddev->thread);
3036
3037 mempool_destroy(oldpool);
3038 return 0;
3039 }
3040
3041 static void raid1_quiesce(struct mddev *mddev, int state)
3042 {
3043 struct r1conf *conf = mddev->private;
3044
3045 switch(state) {
3046 case 2: /* wake for suspend */
3047 wake_up(&conf->wait_barrier);
3048 break;
3049 case 1:
3050 raise_barrier(conf);
3051 break;
3052 case 0:
3053 lower_barrier(conf);
3054 break;
3055 }
3056 }
3057
3058 static void *raid1_takeover(struct mddev *mddev)
3059 {
3060 /* raid1 can take over:
3061 * raid5 with 2 devices, any layout or chunk size
3062 */
3063 if (mddev->level == 5 && mddev->raid_disks == 2) {
3064 struct r1conf *conf;
3065 mddev->new_level = 1;
3066 mddev->new_layout = 0;
3067 mddev->new_chunk_sectors = 0;
3068 conf = setup_conf(mddev);
3069 if (!IS_ERR(conf))
3070 conf->barrier = 1;
3071 return conf;
3072 }
3073 return ERR_PTR(-EINVAL);
3074 }
3075
3076 static struct md_personality raid1_personality =
3077 {
3078 .name = "raid1",
3079 .level = 1,
3080 .owner = THIS_MODULE,
3081 .make_request = make_request,
3082 .run = run,
3083 .stop = stop,
3084 .status = status,
3085 .error_handler = error,
3086 .hot_add_disk = raid1_add_disk,
3087 .hot_remove_disk= raid1_remove_disk,
3088 .spare_active = raid1_spare_active,
3089 .sync_request = sync_request,
3090 .resize = raid1_resize,
3091 .size = raid1_size,
3092 .check_reshape = raid1_reshape,
3093 .quiesce = raid1_quiesce,
3094 .takeover = raid1_takeover,
3095 };
3096
3097 static int __init raid_init(void)
3098 {
3099 return register_md_personality(&raid1_personality);
3100 }
3101
3102 static void raid_exit(void)
3103 {
3104 unregister_md_personality(&raid1_personality);
3105 }
3106
3107 module_init(raid_init);
3108 module_exit(raid_exit);
3109 MODULE_LICENSE("GPL");
3110 MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD");
3111 MODULE_ALIAS("md-personality-3"); /* RAID1 */
3112 MODULE_ALIAS("md-raid1");
3113 MODULE_ALIAS("md-level-1");
3114
3115 module_param(max_queued_requests, int, S_IRUGO|S_IWUSR);