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