2 * raid1.c : Multiple Devices driver for Linux
4 * Copyright (C) 1999, 2000, 2001 Ingo Molnar, Red Hat
6 * Copyright (C) 1996, 1997, 1998 Ingo Molnar, Miguel de Icaza, Gadi Oxman
8 * RAID-1 management functions.
10 * Better read-balancing code written by Mika Kuoppala <miku@iki.fi>, 2000
12 * Fixes to reconstruction by Jakob Østergaard" <jakob@ostenfeld.dk>
13 * Various fixes by Neil Brown <neilb@cse.unsw.edu.au>
15 * Changes by Peter T. Breuer <ptb@it.uc3m.es> 31/1/2003 to support
16 * bitmapped intelligence in resync:
18 * - bitmap marked during normal i/o
19 * - bitmap used to skip nondirty blocks during sync
21 * Additions to bitmap code, (C) 2003-2004 Paul Clements, SteelEye Technology:
22 * - persistent bitmap code
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)
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.
34 #include <linux/delay.h>
35 #include <linux/blkdev.h>
36 #include <linux/seq_file.h>
43 #define PRINTK(x...) printk(x)
49 * Number of guaranteed r1bios in case of extreme VM load:
51 #define NR_RAID1_BIOS 256
54 static void unplug_slaves(mddev_t
*mddev
);
56 static void allow_barrier(conf_t
*conf
);
57 static void lower_barrier(conf_t
*conf
);
59 static void * r1bio_pool_alloc(gfp_t gfp_flags
, void *data
)
61 struct pool_info
*pi
= data
;
63 int size
= offsetof(r1bio_t
, bios
[pi
->raid_disks
]);
65 /* allocate a r1bio with room for raid_disks entries in the bios array */
66 r1_bio
= kzalloc(size
, gfp_flags
);
67 if (!r1_bio
&& pi
->mddev
)
68 unplug_slaves(pi
->mddev
);
73 static void r1bio_pool_free(void *r1_bio
, void *data
)
78 #define RESYNC_BLOCK_SIZE (64*1024)
79 //#define RESYNC_BLOCK_SIZE PAGE_SIZE
80 #define RESYNC_SECTORS (RESYNC_BLOCK_SIZE >> 9)
81 #define RESYNC_PAGES ((RESYNC_BLOCK_SIZE + PAGE_SIZE-1) / PAGE_SIZE)
82 #define RESYNC_WINDOW (2048*1024)
84 static void * r1buf_pool_alloc(gfp_t gfp_flags
, void *data
)
86 struct pool_info
*pi
= data
;
92 r1_bio
= r1bio_pool_alloc(gfp_flags
, pi
);
94 unplug_slaves(pi
->mddev
);
99 * Allocate bios : 1 for reading, n-1 for writing
101 for (j
= pi
->raid_disks
; j
-- ; ) {
102 bio
= bio_alloc(gfp_flags
, RESYNC_PAGES
);
105 r1_bio
->bios
[j
] = bio
;
108 * Allocate RESYNC_PAGES data pages and attach them to
110 * If this is a user-requested check/repair, allocate
111 * RESYNC_PAGES for each bio.
113 if (test_bit(MD_RECOVERY_REQUESTED
, &pi
->mddev
->recovery
))
118 bio
= r1_bio
->bios
[j
];
119 for (i
= 0; i
< RESYNC_PAGES
; i
++) {
120 page
= alloc_page(gfp_flags
);
124 bio
->bi_io_vec
[i
].bv_page
= page
;
128 /* If not user-requests, copy the page pointers to all bios */
129 if (!test_bit(MD_RECOVERY_REQUESTED
, &pi
->mddev
->recovery
)) {
130 for (i
=0; i
<RESYNC_PAGES
; i
++)
131 for (j
=1; j
<pi
->raid_disks
; j
++)
132 r1_bio
->bios
[j
]->bi_io_vec
[i
].bv_page
=
133 r1_bio
->bios
[0]->bi_io_vec
[i
].bv_page
;
136 r1_bio
->master_bio
= NULL
;
141 for (j
=0 ; j
< pi
->raid_disks
; j
++)
142 for (i
=0; i
< r1_bio
->bios
[j
]->bi_vcnt
; i
++)
143 put_page(r1_bio
->bios
[j
]->bi_io_vec
[i
].bv_page
);
146 while ( ++j
< pi
->raid_disks
)
147 bio_put(r1_bio
->bios
[j
]);
148 r1bio_pool_free(r1_bio
, data
);
152 static void r1buf_pool_free(void *__r1_bio
, void *data
)
154 struct pool_info
*pi
= data
;
156 r1bio_t
*r1bio
= __r1_bio
;
158 for (i
= 0; i
< RESYNC_PAGES
; i
++)
159 for (j
= pi
->raid_disks
; j
-- ;) {
161 r1bio
->bios
[j
]->bi_io_vec
[i
].bv_page
!=
162 r1bio
->bios
[0]->bi_io_vec
[i
].bv_page
)
163 safe_put_page(r1bio
->bios
[j
]->bi_io_vec
[i
].bv_page
);
165 for (i
=0 ; i
< pi
->raid_disks
; i
++)
166 bio_put(r1bio
->bios
[i
]);
168 r1bio_pool_free(r1bio
, data
);
171 static void put_all_bios(conf_t
*conf
, r1bio_t
*r1_bio
)
175 for (i
= 0; i
< conf
->raid_disks
; i
++) {
176 struct bio
**bio
= r1_bio
->bios
+ i
;
177 if (*bio
&& *bio
!= IO_BLOCKED
)
183 static void free_r1bio(r1bio_t
*r1_bio
)
185 conf_t
*conf
= r1_bio
->mddev
->private;
188 * Wake up any possible resync thread that waits for the device
193 put_all_bios(conf
, r1_bio
);
194 mempool_free(r1_bio
, conf
->r1bio_pool
);
197 static void put_buf(r1bio_t
*r1_bio
)
199 conf_t
*conf
= r1_bio
->mddev
->private;
202 for (i
=0; i
<conf
->raid_disks
; i
++) {
203 struct bio
*bio
= r1_bio
->bios
[i
];
205 rdev_dec_pending(conf
->mirrors
[i
].rdev
, r1_bio
->mddev
);
208 mempool_free(r1_bio
, conf
->r1buf_pool
);
213 static void reschedule_retry(r1bio_t
*r1_bio
)
216 mddev_t
*mddev
= r1_bio
->mddev
;
217 conf_t
*conf
= mddev
->private;
219 spin_lock_irqsave(&conf
->device_lock
, flags
);
220 list_add(&r1_bio
->retry_list
, &conf
->retry_list
);
222 spin_unlock_irqrestore(&conf
->device_lock
, flags
);
224 wake_up(&conf
->wait_barrier
);
225 md_wakeup_thread(mddev
->thread
);
229 * raid_end_bio_io() is called when we have finished servicing a mirrored
230 * operation and are ready to return a success/failure code to the buffer
233 static void raid_end_bio_io(r1bio_t
*r1_bio
)
235 struct bio
*bio
= r1_bio
->master_bio
;
237 /* if nobody has done the final endio yet, do it now */
238 if (!test_and_set_bit(R1BIO_Returned
, &r1_bio
->state
)) {
239 PRINTK(KERN_DEBUG
"raid1: sync end %s on sectors %llu-%llu\n",
240 (bio_data_dir(bio
) == WRITE
) ? "write" : "read",
241 (unsigned long long) bio
->bi_sector
,
242 (unsigned long long) bio
->bi_sector
+
243 (bio
->bi_size
>> 9) - 1);
246 test_bit(R1BIO_Uptodate
, &r1_bio
->state
) ? 0 : -EIO
);
252 * Update disk head position estimator based on IRQ completion info.
254 static inline void update_head_pos(int disk
, r1bio_t
*r1_bio
)
256 conf_t
*conf
= r1_bio
->mddev
->private;
258 conf
->mirrors
[disk
].head_position
=
259 r1_bio
->sector
+ (r1_bio
->sectors
);
262 static void raid1_end_read_request(struct bio
*bio
, int error
)
264 int uptodate
= test_bit(BIO_UPTODATE
, &bio
->bi_flags
);
265 r1bio_t
* r1_bio
= (r1bio_t
*)(bio
->bi_private
);
267 conf_t
*conf
= r1_bio
->mddev
->private;
269 mirror
= r1_bio
->read_disk
;
271 * this branch is our 'one mirror IO has finished' event handler:
273 update_head_pos(mirror
, r1_bio
);
276 set_bit(R1BIO_Uptodate
, &r1_bio
->state
);
278 /* If all other devices have failed, we want to return
279 * the error upwards rather than fail the last device.
280 * Here we redefine "uptodate" to mean "Don't want to retry"
283 spin_lock_irqsave(&conf
->device_lock
, flags
);
284 if (r1_bio
->mddev
->degraded
== conf
->raid_disks
||
285 (r1_bio
->mddev
->degraded
== conf
->raid_disks
-1 &&
286 !test_bit(Faulty
, &conf
->mirrors
[mirror
].rdev
->flags
)))
288 spin_unlock_irqrestore(&conf
->device_lock
, flags
);
292 raid_end_bio_io(r1_bio
);
297 char b
[BDEVNAME_SIZE
];
298 if (printk_ratelimit())
299 printk(KERN_ERR
"raid1: %s: rescheduling sector %llu\n",
300 bdevname(conf
->mirrors
[mirror
].rdev
->bdev
,b
), (unsigned long long)r1_bio
->sector
);
301 reschedule_retry(r1_bio
);
304 rdev_dec_pending(conf
->mirrors
[mirror
].rdev
, conf
->mddev
);
307 static void raid1_end_write_request(struct bio
*bio
, int error
)
309 int uptodate
= test_bit(BIO_UPTODATE
, &bio
->bi_flags
);
310 r1bio_t
* r1_bio
= (r1bio_t
*)(bio
->bi_private
);
311 int mirror
, behind
= test_bit(R1BIO_BehindIO
, &r1_bio
->state
);
312 conf_t
*conf
= r1_bio
->mddev
->private;
313 struct bio
*to_put
= NULL
;
316 for (mirror
= 0; mirror
< conf
->raid_disks
; mirror
++)
317 if (r1_bio
->bios
[mirror
] == bio
)
320 if (error
== -EOPNOTSUPP
&& test_bit(R1BIO_Barrier
, &r1_bio
->state
)) {
321 set_bit(BarriersNotsupp
, &conf
->mirrors
[mirror
].rdev
->flags
);
322 set_bit(R1BIO_BarrierRetry
, &r1_bio
->state
);
323 r1_bio
->mddev
->barriers_work
= 0;
324 /* Don't rdev_dec_pending in this branch - keep it for the retry */
327 * this branch is our 'one mirror IO has finished' event handler:
329 r1_bio
->bios
[mirror
] = NULL
;
332 md_error(r1_bio
->mddev
, conf
->mirrors
[mirror
].rdev
);
333 /* an I/O failed, we can't clear the bitmap */
334 set_bit(R1BIO_Degraded
, &r1_bio
->state
);
337 * Set R1BIO_Uptodate in our master bio, so that
338 * we will return a good error code for to the higher
339 * levels even if IO on some other mirrored buffer fails.
341 * The 'master' represents the composite IO operation to
342 * user-side. So if something waits for IO, then it will
343 * wait for the 'master' bio.
345 set_bit(R1BIO_Uptodate
, &r1_bio
->state
);
347 update_head_pos(mirror
, r1_bio
);
350 if (test_bit(WriteMostly
, &conf
->mirrors
[mirror
].rdev
->flags
))
351 atomic_dec(&r1_bio
->behind_remaining
);
353 /* In behind mode, we ACK the master bio once the I/O has safely
354 * reached all non-writemostly disks. Setting the Returned bit
355 * ensures that this gets done only once -- we don't ever want to
356 * return -EIO here, instead we'll wait */
358 if (atomic_read(&r1_bio
->behind_remaining
) >= (atomic_read(&r1_bio
->remaining
)-1) &&
359 test_bit(R1BIO_Uptodate
, &r1_bio
->state
)) {
360 /* Maybe we can return now */
361 if (!test_and_set_bit(R1BIO_Returned
, &r1_bio
->state
)) {
362 struct bio
*mbio
= r1_bio
->master_bio
;
363 PRINTK(KERN_DEBUG
"raid1: behind end write sectors %llu-%llu\n",
364 (unsigned long long) mbio
->bi_sector
,
365 (unsigned long long) mbio
->bi_sector
+
366 (mbio
->bi_size
>> 9) - 1);
371 rdev_dec_pending(conf
->mirrors
[mirror
].rdev
, conf
->mddev
);
375 * Let's see if all mirrored write operations have finished
378 if (atomic_dec_and_test(&r1_bio
->remaining
)) {
379 if (test_bit(R1BIO_BarrierRetry
, &r1_bio
->state
))
380 reschedule_retry(r1_bio
);
382 /* it really is the end of this request */
383 if (test_bit(R1BIO_BehindIO
, &r1_bio
->state
)) {
384 /* free extra copy of the data pages */
385 int i
= bio
->bi_vcnt
;
387 safe_put_page(bio
->bi_io_vec
[i
].bv_page
);
389 /* clear the bitmap if all writes complete successfully */
390 bitmap_endwrite(r1_bio
->mddev
->bitmap
, r1_bio
->sector
,
392 !test_bit(R1BIO_Degraded
, &r1_bio
->state
),
394 md_write_end(r1_bio
->mddev
);
395 raid_end_bio_io(r1_bio
);
405 * This routine returns the disk from which the requested read should
406 * be done. There is a per-array 'next expected sequential IO' sector
407 * number - if this matches on the next IO then we use the last disk.
408 * There is also a per-disk 'last know head position' sector that is
409 * maintained from IRQ contexts, both the normal and the resync IO
410 * completion handlers update this position correctly. If there is no
411 * perfect sequential match then we pick the disk whose head is closest.
413 * If there are 2 mirrors in the same 2 devices, performance degrades
414 * because position is mirror, not device based.
416 * The rdev for the device selected will have nr_pending incremented.
418 static int read_balance(conf_t
*conf
, r1bio_t
*r1_bio
)
420 const unsigned long this_sector
= r1_bio
->sector
;
421 int new_disk
= conf
->last_used
, disk
= new_disk
;
423 const int sectors
= r1_bio
->sectors
;
424 sector_t new_distance
, current_distance
;
429 * Check if we can balance. We can balance on the whole
430 * device if no resync is going on, or below the resync window.
431 * We take the first readable disk when above the resync window.
434 if (conf
->mddev
->recovery_cp
< MaxSector
&&
435 (this_sector
+ sectors
>= conf
->next_resync
)) {
436 /* Choose the first operation device, for consistancy */
439 for (rdev
= rcu_dereference(conf
->mirrors
[new_disk
].rdev
);
440 r1_bio
->bios
[new_disk
] == IO_BLOCKED
||
441 !rdev
|| !test_bit(In_sync
, &rdev
->flags
)
442 || test_bit(WriteMostly
, &rdev
->flags
);
443 rdev
= rcu_dereference(conf
->mirrors
[++new_disk
].rdev
)) {
445 if (rdev
&& test_bit(In_sync
, &rdev
->flags
) &&
446 r1_bio
->bios
[new_disk
] != IO_BLOCKED
)
447 wonly_disk
= new_disk
;
449 if (new_disk
== conf
->raid_disks
- 1) {
450 new_disk
= wonly_disk
;
458 /* make sure the disk is operational */
459 for (rdev
= rcu_dereference(conf
->mirrors
[new_disk
].rdev
);
460 r1_bio
->bios
[new_disk
] == IO_BLOCKED
||
461 !rdev
|| !test_bit(In_sync
, &rdev
->flags
) ||
462 test_bit(WriteMostly
, &rdev
->flags
);
463 rdev
= rcu_dereference(conf
->mirrors
[new_disk
].rdev
)) {
465 if (rdev
&& test_bit(In_sync
, &rdev
->flags
) &&
466 r1_bio
->bios
[new_disk
] != IO_BLOCKED
)
467 wonly_disk
= new_disk
;
470 new_disk
= conf
->raid_disks
;
472 if (new_disk
== disk
) {
473 new_disk
= wonly_disk
;
482 /* now disk == new_disk == starting point for search */
485 * Don't change to another disk for sequential reads:
487 if (conf
->next_seq_sect
== this_sector
)
489 if (this_sector
== conf
->mirrors
[new_disk
].head_position
)
492 current_distance
= abs(this_sector
- conf
->mirrors
[disk
].head_position
);
494 /* Find the disk whose head is closest */
498 disk
= conf
->raid_disks
;
501 rdev
= rcu_dereference(conf
->mirrors
[disk
].rdev
);
503 if (!rdev
|| r1_bio
->bios
[disk
] == IO_BLOCKED
||
504 !test_bit(In_sync
, &rdev
->flags
) ||
505 test_bit(WriteMostly
, &rdev
->flags
))
508 if (!atomic_read(&rdev
->nr_pending
)) {
512 new_distance
= abs(this_sector
- conf
->mirrors
[disk
].head_position
);
513 if (new_distance
< current_distance
) {
514 current_distance
= new_distance
;
517 } while (disk
!= conf
->last_used
);
523 rdev
= rcu_dereference(conf
->mirrors
[new_disk
].rdev
);
526 atomic_inc(&rdev
->nr_pending
);
527 if (!test_bit(In_sync
, &rdev
->flags
)) {
528 /* cannot risk returning a device that failed
529 * before we inc'ed nr_pending
531 rdev_dec_pending(rdev
, conf
->mddev
);
534 conf
->next_seq_sect
= this_sector
+ sectors
;
535 conf
->last_used
= new_disk
;
542 static void unplug_slaves(mddev_t
*mddev
)
544 conf_t
*conf
= mddev
->private;
548 for (i
=0; i
<mddev
->raid_disks
; i
++) {
549 mdk_rdev_t
*rdev
= rcu_dereference(conf
->mirrors
[i
].rdev
);
550 if (rdev
&& !test_bit(Faulty
, &rdev
->flags
) && atomic_read(&rdev
->nr_pending
)) {
551 struct request_queue
*r_queue
= bdev_get_queue(rdev
->bdev
);
553 atomic_inc(&rdev
->nr_pending
);
558 rdev_dec_pending(rdev
, mddev
);
565 static void raid1_unplug(struct request_queue
*q
)
567 mddev_t
*mddev
= q
->queuedata
;
569 unplug_slaves(mddev
);
570 md_wakeup_thread(mddev
->thread
);
573 static int raid1_congested(void *data
, int bits
)
575 mddev_t
*mddev
= data
;
576 conf_t
*conf
= mddev
->private;
579 if (mddev_congested(mddev
, bits
))
583 for (i
= 0; i
< mddev
->raid_disks
; i
++) {
584 mdk_rdev_t
*rdev
= rcu_dereference(conf
->mirrors
[i
].rdev
);
585 if (rdev
&& !test_bit(Faulty
, &rdev
->flags
)) {
586 struct request_queue
*q
= bdev_get_queue(rdev
->bdev
);
588 /* Note the '|| 1' - when read_balance prefers
589 * non-congested targets, it can be removed
591 if ((bits
& (1<<BDI_async_congested
)) || 1)
592 ret
|= bdi_congested(&q
->backing_dev_info
, bits
);
594 ret
&= bdi_congested(&q
->backing_dev_info
, bits
);
602 static int flush_pending_writes(conf_t
*conf
)
604 /* Any writes that have been queued but are awaiting
605 * bitmap updates get flushed here.
606 * We return 1 if any requests were actually submitted.
610 spin_lock_irq(&conf
->device_lock
);
612 if (conf
->pending_bio_list
.head
) {
614 bio
= bio_list_get(&conf
->pending_bio_list
);
615 blk_remove_plug(conf
->mddev
->queue
);
616 spin_unlock_irq(&conf
->device_lock
);
617 /* flush any pending bitmap writes to
618 * disk before proceeding w/ I/O */
619 bitmap_unplug(conf
->mddev
->bitmap
);
621 while (bio
) { /* submit pending writes */
622 struct bio
*next
= bio
->bi_next
;
624 generic_make_request(bio
);
629 spin_unlock_irq(&conf
->device_lock
);
634 * Sometimes we need to suspend IO while we do something else,
635 * either some resync/recovery, or reconfigure the array.
636 * To do this we raise a 'barrier'.
637 * The 'barrier' is a counter that can be raised multiple times
638 * to count how many activities are happening which preclude
640 * We can only raise the barrier if there is no pending IO.
641 * i.e. if nr_pending == 0.
642 * We choose only to raise the barrier if no-one is waiting for the
643 * barrier to go down. This means that as soon as an IO request
644 * is ready, no other operations which require a barrier will start
645 * until the IO request has had a chance.
647 * So: regular IO calls 'wait_barrier'. When that returns there
648 * is no backgroup IO happening, It must arrange to call
649 * allow_barrier when it has finished its IO.
650 * backgroup IO calls must call raise_barrier. Once that returns
651 * there is no normal IO happeing. It must arrange to call
652 * lower_barrier when the particular background IO completes.
654 #define RESYNC_DEPTH 32
656 static void raise_barrier(conf_t
*conf
)
658 spin_lock_irq(&conf
->resync_lock
);
660 /* Wait until no block IO is waiting */
661 wait_event_lock_irq(conf
->wait_barrier
, !conf
->nr_waiting
,
663 raid1_unplug(conf
->mddev
->queue
));
665 /* block any new IO from starting */
668 /* No wait for all pending IO to complete */
669 wait_event_lock_irq(conf
->wait_barrier
,
670 !conf
->nr_pending
&& conf
->barrier
< RESYNC_DEPTH
,
672 raid1_unplug(conf
->mddev
->queue
));
674 spin_unlock_irq(&conf
->resync_lock
);
677 static void lower_barrier(conf_t
*conf
)
680 BUG_ON(conf
->barrier
<= 0);
681 spin_lock_irqsave(&conf
->resync_lock
, flags
);
683 spin_unlock_irqrestore(&conf
->resync_lock
, flags
);
684 wake_up(&conf
->wait_barrier
);
687 static void wait_barrier(conf_t
*conf
)
689 spin_lock_irq(&conf
->resync_lock
);
692 wait_event_lock_irq(conf
->wait_barrier
, !conf
->barrier
,
694 raid1_unplug(conf
->mddev
->queue
));
698 spin_unlock_irq(&conf
->resync_lock
);
701 static void allow_barrier(conf_t
*conf
)
704 spin_lock_irqsave(&conf
->resync_lock
, flags
);
706 spin_unlock_irqrestore(&conf
->resync_lock
, flags
);
707 wake_up(&conf
->wait_barrier
);
710 static void freeze_array(conf_t
*conf
)
712 /* stop syncio and normal IO and wait for everything to
714 * We increment barrier and nr_waiting, and then
715 * wait until nr_pending match nr_queued+1
716 * This is called in the context of one normal IO request
717 * that has failed. Thus any sync request that might be pending
718 * will be blocked by nr_pending, and we need to wait for
719 * pending IO requests to complete or be queued for re-try.
720 * Thus the number queued (nr_queued) plus this request (1)
721 * must match the number of pending IOs (nr_pending) before
724 spin_lock_irq(&conf
->resync_lock
);
727 wait_event_lock_irq(conf
->wait_barrier
,
728 conf
->nr_pending
== conf
->nr_queued
+1,
730 ({ flush_pending_writes(conf
);
731 raid1_unplug(conf
->mddev
->queue
); }));
732 spin_unlock_irq(&conf
->resync_lock
);
734 static void unfreeze_array(conf_t
*conf
)
736 /* reverse the effect of the freeze */
737 spin_lock_irq(&conf
->resync_lock
);
740 wake_up(&conf
->wait_barrier
);
741 spin_unlock_irq(&conf
->resync_lock
);
745 /* duplicate the data pages for behind I/O */
746 static struct page
**alloc_behind_pages(struct bio
*bio
)
749 struct bio_vec
*bvec
;
750 struct page
**pages
= kzalloc(bio
->bi_vcnt
* sizeof(struct page
*),
752 if (unlikely(!pages
))
755 bio_for_each_segment(bvec
, bio
, i
) {
756 pages
[i
] = alloc_page(GFP_NOIO
);
757 if (unlikely(!pages
[i
]))
759 memcpy(kmap(pages
[i
]) + bvec
->bv_offset
,
760 kmap(bvec
->bv_page
) + bvec
->bv_offset
, bvec
->bv_len
);
762 kunmap(bvec
->bv_page
);
769 for (i
= 0; i
< bio
->bi_vcnt
&& pages
[i
]; i
++)
772 PRINTK("%dB behind alloc failed, doing sync I/O\n", bio
->bi_size
);
776 static int make_request(struct request_queue
*q
, struct bio
* bio
)
778 mddev_t
*mddev
= q
->queuedata
;
779 conf_t
*conf
= mddev
->private;
780 mirror_info_t
*mirror
;
782 struct bio
*read_bio
;
783 int i
, targets
= 0, disks
;
784 struct bitmap
*bitmap
;
787 struct page
**behind_pages
= NULL
;
788 const int rw
= bio_data_dir(bio
);
789 const bool do_sync
= bio_rw_flagged(bio
, BIO_RW_SYNCIO
);
792 mdk_rdev_t
*blocked_rdev
;
795 * Register the new request and wait if the reconstruction
796 * thread has put up a bar for new requests.
797 * Continue immediately if no resync is active currently.
798 * We test barriers_work *after* md_write_start as md_write_start
799 * may cause the first superblock write, and that will check out
803 md_write_start(mddev
, bio
); /* wait on superblock update early */
805 if (bio_data_dir(bio
) == WRITE
&&
806 bio
->bi_sector
+ bio
->bi_size
/512 > mddev
->suspend_lo
&&
807 bio
->bi_sector
< mddev
->suspend_hi
) {
808 /* As the suspend_* range is controlled by
809 * userspace, we want an interruptible
814 flush_signals(current
);
815 prepare_to_wait(&conf
->wait_barrier
,
816 &w
, TASK_INTERRUPTIBLE
);
817 if (bio
->bi_sector
+ bio
->bi_size
/512 <= mddev
->suspend_lo
||
818 bio
->bi_sector
>= mddev
->suspend_hi
)
822 finish_wait(&conf
->wait_barrier
, &w
);
824 if (unlikely(!mddev
->barriers_work
&&
825 bio_rw_flagged(bio
, BIO_RW_BARRIER
))) {
828 bio_endio(bio
, -EOPNOTSUPP
);
834 bitmap
= mddev
->bitmap
;
836 cpu
= part_stat_lock();
837 part_stat_inc(cpu
, &mddev
->gendisk
->part0
, ios
[rw
]);
838 part_stat_add(cpu
, &mddev
->gendisk
->part0
, sectors
[rw
],
843 * make_request() can abort the operation when READA is being
844 * used and no empty request is available.
847 r1_bio
= mempool_alloc(conf
->r1bio_pool
, GFP_NOIO
);
849 r1_bio
->master_bio
= bio
;
850 r1_bio
->sectors
= bio
->bi_size
>> 9;
852 r1_bio
->mddev
= mddev
;
853 r1_bio
->sector
= bio
->bi_sector
;
857 * read balancing logic:
859 int rdisk
= read_balance(conf
, r1_bio
);
862 /* couldn't find anywhere to read from */
863 raid_end_bio_io(r1_bio
);
866 mirror
= conf
->mirrors
+ rdisk
;
868 r1_bio
->read_disk
= rdisk
;
870 read_bio
= bio_clone(bio
, GFP_NOIO
);
872 r1_bio
->bios
[rdisk
] = read_bio
;
874 read_bio
->bi_sector
= r1_bio
->sector
+ mirror
->rdev
->data_offset
;
875 read_bio
->bi_bdev
= mirror
->rdev
->bdev
;
876 read_bio
->bi_end_io
= raid1_end_read_request
;
877 read_bio
->bi_rw
= READ
| (do_sync
<< BIO_RW_SYNCIO
);
878 read_bio
->bi_private
= r1_bio
;
880 generic_make_request(read_bio
);
887 /* first select target devices under spinlock and
888 * inc refcount on their rdev. Record them by setting
891 disks
= conf
->raid_disks
;
893 { static int first
=1;
894 if (first
) printk("First Write sector %llu disks %d\n",
895 (unsigned long long)r1_bio
->sector
, disks
);
902 for (i
= 0; i
< disks
; i
++) {
903 mdk_rdev_t
*rdev
= rcu_dereference(conf
->mirrors
[i
].rdev
);
904 if (rdev
&& unlikely(test_bit(Blocked
, &rdev
->flags
))) {
905 atomic_inc(&rdev
->nr_pending
);
909 if (rdev
&& !test_bit(Faulty
, &rdev
->flags
)) {
910 atomic_inc(&rdev
->nr_pending
);
911 if (test_bit(Faulty
, &rdev
->flags
)) {
912 rdev_dec_pending(rdev
, mddev
);
913 r1_bio
->bios
[i
] = NULL
;
915 r1_bio
->bios
[i
] = bio
;
918 r1_bio
->bios
[i
] = NULL
;
922 if (unlikely(blocked_rdev
)) {
923 /* Wait for this device to become unblocked */
926 for (j
= 0; j
< i
; j
++)
928 rdev_dec_pending(conf
->mirrors
[j
].rdev
, mddev
);
931 md_wait_for_blocked_rdev(blocked_rdev
, mddev
);
936 BUG_ON(targets
== 0); /* we never fail the last device */
938 if (targets
< conf
->raid_disks
) {
939 /* array is degraded, we will not clear the bitmap
940 * on I/O completion (see raid1_end_write_request) */
941 set_bit(R1BIO_Degraded
, &r1_bio
->state
);
944 /* do behind I/O ? */
946 (atomic_read(&bitmap
->behind_writes
)
947 < mddev
->bitmap_info
.max_write_behind
) &&
948 (behind_pages
= alloc_behind_pages(bio
)) != NULL
)
949 set_bit(R1BIO_BehindIO
, &r1_bio
->state
);
951 atomic_set(&r1_bio
->remaining
, 0);
952 atomic_set(&r1_bio
->behind_remaining
, 0);
954 do_barriers
= bio_rw_flagged(bio
, BIO_RW_BARRIER
);
956 set_bit(R1BIO_Barrier
, &r1_bio
->state
);
959 for (i
= 0; i
< disks
; i
++) {
961 if (!r1_bio
->bios
[i
])
964 mbio
= bio_clone(bio
, GFP_NOIO
);
965 r1_bio
->bios
[i
] = mbio
;
967 mbio
->bi_sector
= r1_bio
->sector
+ conf
->mirrors
[i
].rdev
->data_offset
;
968 mbio
->bi_bdev
= conf
->mirrors
[i
].rdev
->bdev
;
969 mbio
->bi_end_io
= raid1_end_write_request
;
970 mbio
->bi_rw
= WRITE
| (do_barriers
<< BIO_RW_BARRIER
) |
971 (do_sync
<< BIO_RW_SYNCIO
);
972 mbio
->bi_private
= r1_bio
;
975 struct bio_vec
*bvec
;
978 /* Yes, I really want the '__' version so that
979 * we clear any unused pointer in the io_vec, rather
980 * than leave them unchanged. This is important
981 * because when we come to free the pages, we won't
982 * know the originial bi_idx, so we just free
985 __bio_for_each_segment(bvec
, mbio
, j
, 0)
986 bvec
->bv_page
= behind_pages
[j
];
987 if (test_bit(WriteMostly
, &conf
->mirrors
[i
].rdev
->flags
))
988 atomic_inc(&r1_bio
->behind_remaining
);
991 atomic_inc(&r1_bio
->remaining
);
993 bio_list_add(&bl
, mbio
);
995 kfree(behind_pages
); /* the behind pages are attached to the bios now */
997 bitmap_startwrite(bitmap
, bio
->bi_sector
, r1_bio
->sectors
,
998 test_bit(R1BIO_BehindIO
, &r1_bio
->state
));
999 spin_lock_irqsave(&conf
->device_lock
, flags
);
1000 bio_list_merge(&conf
->pending_bio_list
, &bl
);
1003 blk_plug_device(mddev
->queue
);
1004 spin_unlock_irqrestore(&conf
->device_lock
, flags
);
1006 /* In case raid1d snuck into freeze_array */
1007 wake_up(&conf
->wait_barrier
);
1010 md_wakeup_thread(mddev
->thread
);
1012 while ((bio
= bio_list_pop(&bl
)) != NULL
)
1013 generic_make_request(bio
);
1019 static void status(struct seq_file
*seq
, mddev_t
*mddev
)
1021 conf_t
*conf
= mddev
->private;
1024 seq_printf(seq
, " [%d/%d] [", conf
->raid_disks
,
1025 conf
->raid_disks
- mddev
->degraded
);
1027 for (i
= 0; i
< conf
->raid_disks
; i
++) {
1028 mdk_rdev_t
*rdev
= rcu_dereference(conf
->mirrors
[i
].rdev
);
1029 seq_printf(seq
, "%s",
1030 rdev
&& test_bit(In_sync
, &rdev
->flags
) ? "U" : "_");
1033 seq_printf(seq
, "]");
1037 static void error(mddev_t
*mddev
, mdk_rdev_t
*rdev
)
1039 char b
[BDEVNAME_SIZE
];
1040 conf_t
*conf
= mddev
->private;
1043 * If it is not operational, then we have already marked it as dead
1044 * else if it is the last working disks, ignore the error, let the
1045 * next level up know.
1046 * else mark the drive as failed
1048 if (test_bit(In_sync
, &rdev
->flags
)
1049 && (conf
->raid_disks
- mddev
->degraded
) == 1) {
1051 * Don't fail the drive, act as though we were just a
1052 * normal single drive.
1053 * However don't try a recovery from this drive as
1054 * it is very likely to fail.
1056 mddev
->recovery_disabled
= 1;
1059 if (test_and_clear_bit(In_sync
, &rdev
->flags
)) {
1060 unsigned long flags
;
1061 spin_lock_irqsave(&conf
->device_lock
, flags
);
1063 set_bit(Faulty
, &rdev
->flags
);
1064 spin_unlock_irqrestore(&conf
->device_lock
, flags
);
1066 * if recovery is running, make sure it aborts.
1068 set_bit(MD_RECOVERY_INTR
, &mddev
->recovery
);
1070 set_bit(Faulty
, &rdev
->flags
);
1071 set_bit(MD_CHANGE_DEVS
, &mddev
->flags
);
1072 printk(KERN_ALERT
"raid1: Disk failure on %s, disabling device.\n"
1073 "raid1: Operation continuing on %d devices.\n",
1074 bdevname(rdev
->bdev
,b
), conf
->raid_disks
- mddev
->degraded
);
1077 static void print_conf(conf_t
*conf
)
1081 printk("RAID1 conf printout:\n");
1083 printk("(!conf)\n");
1086 printk(" --- wd:%d rd:%d\n", conf
->raid_disks
- conf
->mddev
->degraded
,
1090 for (i
= 0; i
< conf
->raid_disks
; i
++) {
1091 char b
[BDEVNAME_SIZE
];
1092 mdk_rdev_t
*rdev
= rcu_dereference(conf
->mirrors
[i
].rdev
);
1094 printk(" disk %d, wo:%d, o:%d, dev:%s\n",
1095 i
, !test_bit(In_sync
, &rdev
->flags
),
1096 !test_bit(Faulty
, &rdev
->flags
),
1097 bdevname(rdev
->bdev
,b
));
1102 static void close_sync(conf_t
*conf
)
1105 allow_barrier(conf
);
1107 mempool_destroy(conf
->r1buf_pool
);
1108 conf
->r1buf_pool
= NULL
;
1111 static int raid1_spare_active(mddev_t
*mddev
)
1114 conf_t
*conf
= mddev
->private;
1117 * Find all failed disks within the RAID1 configuration
1118 * and mark them readable.
1119 * Called under mddev lock, so rcu protection not needed.
1121 for (i
= 0; i
< conf
->raid_disks
; i
++) {
1122 mdk_rdev_t
*rdev
= conf
->mirrors
[i
].rdev
;
1124 && !test_bit(Faulty
, &rdev
->flags
)
1125 && !test_and_set_bit(In_sync
, &rdev
->flags
)) {
1126 unsigned long flags
;
1127 spin_lock_irqsave(&conf
->device_lock
, flags
);
1129 spin_unlock_irqrestore(&conf
->device_lock
, flags
);
1138 static int raid1_add_disk(mddev_t
*mddev
, mdk_rdev_t
*rdev
)
1140 conf_t
*conf
= mddev
->private;
1145 int last
= mddev
->raid_disks
- 1;
1147 if (rdev
->raid_disk
>= 0)
1148 first
= last
= rdev
->raid_disk
;
1150 for (mirror
= first
; mirror
<= last
; mirror
++)
1151 if ( !(p
=conf
->mirrors
+mirror
)->rdev
) {
1153 disk_stack_limits(mddev
->gendisk
, rdev
->bdev
,
1154 rdev
->data_offset
<< 9);
1155 /* as we don't honour merge_bvec_fn, we must never risk
1156 * violating it, so limit ->max_sector to one PAGE, as
1157 * a one page request is never in violation.
1159 if (rdev
->bdev
->bd_disk
->queue
->merge_bvec_fn
&&
1160 queue_max_sectors(mddev
->queue
) > (PAGE_SIZE
>>9))
1161 blk_queue_max_sectors(mddev
->queue
, PAGE_SIZE
>>9);
1163 p
->head_position
= 0;
1164 rdev
->raid_disk
= mirror
;
1166 /* As all devices are equivalent, we don't need a full recovery
1167 * if this was recently any drive of the array
1169 if (rdev
->saved_raid_disk
< 0)
1171 rcu_assign_pointer(p
->rdev
, rdev
);
1174 md_integrity_add_rdev(rdev
, mddev
);
1179 static int raid1_remove_disk(mddev_t
*mddev
, int number
)
1181 conf_t
*conf
= mddev
->private;
1184 mirror_info_t
*p
= conf
->mirrors
+ number
;
1189 if (test_bit(In_sync
, &rdev
->flags
) ||
1190 atomic_read(&rdev
->nr_pending
)) {
1194 /* Only remove non-faulty devices is recovery
1197 if (!test_bit(Faulty
, &rdev
->flags
) &&
1198 mddev
->degraded
< conf
->raid_disks
) {
1204 if (atomic_read(&rdev
->nr_pending
)) {
1205 /* lost the race, try later */
1210 md_integrity_register(mddev
);
1219 static void end_sync_read(struct bio
*bio
, int error
)
1221 r1bio_t
* r1_bio
= (r1bio_t
*)(bio
->bi_private
);
1224 for (i
=r1_bio
->mddev
->raid_disks
; i
--; )
1225 if (r1_bio
->bios
[i
] == bio
)
1228 update_head_pos(i
, r1_bio
);
1230 * we have read a block, now it needs to be re-written,
1231 * or re-read if the read failed.
1232 * We don't do much here, just schedule handling by raid1d
1234 if (test_bit(BIO_UPTODATE
, &bio
->bi_flags
))
1235 set_bit(R1BIO_Uptodate
, &r1_bio
->state
);
1237 if (atomic_dec_and_test(&r1_bio
->remaining
))
1238 reschedule_retry(r1_bio
);
1241 static void end_sync_write(struct bio
*bio
, int error
)
1243 int uptodate
= test_bit(BIO_UPTODATE
, &bio
->bi_flags
);
1244 r1bio_t
* r1_bio
= (r1bio_t
*)(bio
->bi_private
);
1245 mddev_t
*mddev
= r1_bio
->mddev
;
1246 conf_t
*conf
= mddev
->private;
1250 for (i
= 0; i
< conf
->raid_disks
; i
++)
1251 if (r1_bio
->bios
[i
] == bio
) {
1256 int sync_blocks
= 0;
1257 sector_t s
= r1_bio
->sector
;
1258 long sectors_to_go
= r1_bio
->sectors
;
1259 /* make sure these bits doesn't get cleared. */
1261 bitmap_end_sync(mddev
->bitmap
, s
,
1264 sectors_to_go
-= sync_blocks
;
1265 } while (sectors_to_go
> 0);
1266 md_error(mddev
, conf
->mirrors
[mirror
].rdev
);
1269 update_head_pos(mirror
, r1_bio
);
1271 if (atomic_dec_and_test(&r1_bio
->remaining
)) {
1272 sector_t s
= r1_bio
->sectors
;
1274 md_done_sync(mddev
, s
, uptodate
);
1278 static void sync_request_write(mddev_t
*mddev
, r1bio_t
*r1_bio
)
1280 conf_t
*conf
= mddev
->private;
1282 int disks
= conf
->raid_disks
;
1283 struct bio
*bio
, *wbio
;
1285 bio
= r1_bio
->bios
[r1_bio
->read_disk
];
1288 if (test_bit(MD_RECOVERY_REQUESTED
, &mddev
->recovery
)) {
1289 /* We have read all readable devices. If we haven't
1290 * got the block, then there is no hope left.
1291 * If we have, then we want to do a comparison
1292 * and skip the write if everything is the same.
1293 * If any blocks failed to read, then we need to
1294 * attempt an over-write
1297 if (!test_bit(R1BIO_Uptodate
, &r1_bio
->state
)) {
1298 for (i
=0; i
<mddev
->raid_disks
; i
++)
1299 if (r1_bio
->bios
[i
]->bi_end_io
== end_sync_read
)
1300 md_error(mddev
, conf
->mirrors
[i
].rdev
);
1302 md_done_sync(mddev
, r1_bio
->sectors
, 1);
1306 for (primary
=0; primary
<mddev
->raid_disks
; primary
++)
1307 if (r1_bio
->bios
[primary
]->bi_end_io
== end_sync_read
&&
1308 test_bit(BIO_UPTODATE
, &r1_bio
->bios
[primary
]->bi_flags
)) {
1309 r1_bio
->bios
[primary
]->bi_end_io
= NULL
;
1310 rdev_dec_pending(conf
->mirrors
[primary
].rdev
, mddev
);
1313 r1_bio
->read_disk
= primary
;
1314 for (i
=0; i
<mddev
->raid_disks
; i
++)
1315 if (r1_bio
->bios
[i
]->bi_end_io
== end_sync_read
) {
1317 int vcnt
= r1_bio
->sectors
>> (PAGE_SHIFT
- 9);
1318 struct bio
*pbio
= r1_bio
->bios
[primary
];
1319 struct bio
*sbio
= r1_bio
->bios
[i
];
1321 if (test_bit(BIO_UPTODATE
, &sbio
->bi_flags
)) {
1322 for (j
= vcnt
; j
-- ; ) {
1324 p
= pbio
->bi_io_vec
[j
].bv_page
;
1325 s
= sbio
->bi_io_vec
[j
].bv_page
;
1326 if (memcmp(page_address(p
),
1334 mddev
->resync_mismatches
+= r1_bio
->sectors
;
1335 if (j
< 0 || (test_bit(MD_RECOVERY_CHECK
, &mddev
->recovery
)
1336 && test_bit(BIO_UPTODATE
, &sbio
->bi_flags
))) {
1337 sbio
->bi_end_io
= NULL
;
1338 rdev_dec_pending(conf
->mirrors
[i
].rdev
, mddev
);
1340 /* fixup the bio for reuse */
1342 sbio
->bi_vcnt
= vcnt
;
1343 sbio
->bi_size
= r1_bio
->sectors
<< 9;
1345 sbio
->bi_phys_segments
= 0;
1346 sbio
->bi_flags
&= ~(BIO_POOL_MASK
- 1);
1347 sbio
->bi_flags
|= 1 << BIO_UPTODATE
;
1348 sbio
->bi_next
= NULL
;
1349 sbio
->bi_sector
= r1_bio
->sector
+
1350 conf
->mirrors
[i
].rdev
->data_offset
;
1351 sbio
->bi_bdev
= conf
->mirrors
[i
].rdev
->bdev
;
1352 size
= sbio
->bi_size
;
1353 for (j
= 0; j
< vcnt
; j
++) {
1355 bi
= &sbio
->bi_io_vec
[j
];
1357 if (size
> PAGE_SIZE
)
1358 bi
->bv_len
= PAGE_SIZE
;
1362 memcpy(page_address(bi
->bv_page
),
1363 page_address(pbio
->bi_io_vec
[j
].bv_page
),
1370 if (!test_bit(R1BIO_Uptodate
, &r1_bio
->state
)) {
1371 /* ouch - failed to read all of that.
1372 * Try some synchronous reads of other devices to get
1373 * good data, much like with normal read errors. Only
1374 * read into the pages we already have so we don't
1375 * need to re-issue the read request.
1376 * We don't need to freeze the array, because being in an
1377 * active sync request, there is no normal IO, and
1378 * no overlapping syncs.
1380 sector_t sect
= r1_bio
->sector
;
1381 int sectors
= r1_bio
->sectors
;
1386 int d
= r1_bio
->read_disk
;
1390 if (s
> (PAGE_SIZE
>>9))
1393 if (r1_bio
->bios
[d
]->bi_end_io
== end_sync_read
) {
1394 /* No rcu protection needed here devices
1395 * can only be removed when no resync is
1396 * active, and resync is currently active
1398 rdev
= conf
->mirrors
[d
].rdev
;
1399 if (sync_page_io(rdev
->bdev
,
1400 sect
+ rdev
->data_offset
,
1402 bio
->bi_io_vec
[idx
].bv_page
,
1409 if (d
== conf
->raid_disks
)
1411 } while (!success
&& d
!= r1_bio
->read_disk
);
1415 /* write it back and re-read */
1416 set_bit(R1BIO_Uptodate
, &r1_bio
->state
);
1417 while (d
!= r1_bio
->read_disk
) {
1419 d
= conf
->raid_disks
;
1421 if (r1_bio
->bios
[d
]->bi_end_io
!= end_sync_read
)
1423 rdev
= conf
->mirrors
[d
].rdev
;
1424 atomic_add(s
, &rdev
->corrected_errors
);
1425 if (sync_page_io(rdev
->bdev
,
1426 sect
+ rdev
->data_offset
,
1428 bio
->bi_io_vec
[idx
].bv_page
,
1430 md_error(mddev
, rdev
);
1433 while (d
!= r1_bio
->read_disk
) {
1435 d
= conf
->raid_disks
;
1437 if (r1_bio
->bios
[d
]->bi_end_io
!= end_sync_read
)
1439 rdev
= conf
->mirrors
[d
].rdev
;
1440 if (sync_page_io(rdev
->bdev
,
1441 sect
+ rdev
->data_offset
,
1443 bio
->bi_io_vec
[idx
].bv_page
,
1445 md_error(mddev
, rdev
);
1448 char b
[BDEVNAME_SIZE
];
1449 /* Cannot read from anywhere, array is toast */
1450 md_error(mddev
, conf
->mirrors
[r1_bio
->read_disk
].rdev
);
1451 printk(KERN_ALERT
"raid1: %s: unrecoverable I/O read error"
1452 " for block %llu\n",
1453 bdevname(bio
->bi_bdev
,b
),
1454 (unsigned long long)r1_bio
->sector
);
1455 md_done_sync(mddev
, r1_bio
->sectors
, 0);
1468 atomic_set(&r1_bio
->remaining
, 1);
1469 for (i
= 0; i
< disks
; i
++) {
1470 wbio
= r1_bio
->bios
[i
];
1471 if (wbio
->bi_end_io
== NULL
||
1472 (wbio
->bi_end_io
== end_sync_read
&&
1473 (i
== r1_bio
->read_disk
||
1474 !test_bit(MD_RECOVERY_SYNC
, &mddev
->recovery
))))
1477 wbio
->bi_rw
= WRITE
;
1478 wbio
->bi_end_io
= end_sync_write
;
1479 atomic_inc(&r1_bio
->remaining
);
1480 md_sync_acct(conf
->mirrors
[i
].rdev
->bdev
, wbio
->bi_size
>> 9);
1482 generic_make_request(wbio
);
1485 if (atomic_dec_and_test(&r1_bio
->remaining
)) {
1486 /* if we're here, all write(s) have completed, so clean up */
1487 md_done_sync(mddev
, r1_bio
->sectors
, 1);
1493 * This is a kernel thread which:
1495 * 1. Retries failed read operations on working mirrors.
1496 * 2. Updates the raid superblock when problems encounter.
1497 * 3. Performs writes following reads for array syncronising.
1500 static void fix_read_error(conf_t
*conf
, int read_disk
,
1501 sector_t sect
, int sectors
)
1503 mddev_t
*mddev
= conf
->mddev
;
1511 if (s
> (PAGE_SIZE
>>9))
1515 /* Note: no rcu protection needed here
1516 * as this is synchronous in the raid1d thread
1517 * which is the thread that might remove
1518 * a device. If raid1d ever becomes multi-threaded....
1520 rdev
= conf
->mirrors
[d
].rdev
;
1522 test_bit(In_sync
, &rdev
->flags
) &&
1523 sync_page_io(rdev
->bdev
,
1524 sect
+ rdev
->data_offset
,
1526 conf
->tmppage
, READ
))
1530 if (d
== conf
->raid_disks
)
1533 } while (!success
&& d
!= read_disk
);
1536 /* Cannot read from anywhere -- bye bye array */
1537 md_error(mddev
, conf
->mirrors
[read_disk
].rdev
);
1540 /* write it back and re-read */
1542 while (d
!= read_disk
) {
1544 d
= conf
->raid_disks
;
1546 rdev
= conf
->mirrors
[d
].rdev
;
1548 test_bit(In_sync
, &rdev
->flags
)) {
1549 if (sync_page_io(rdev
->bdev
,
1550 sect
+ rdev
->data_offset
,
1551 s
<<9, conf
->tmppage
, WRITE
)
1553 /* Well, this device is dead */
1554 md_error(mddev
, rdev
);
1558 while (d
!= read_disk
) {
1559 char b
[BDEVNAME_SIZE
];
1561 d
= conf
->raid_disks
;
1563 rdev
= conf
->mirrors
[d
].rdev
;
1565 test_bit(In_sync
, &rdev
->flags
)) {
1566 if (sync_page_io(rdev
->bdev
,
1567 sect
+ rdev
->data_offset
,
1568 s
<<9, conf
->tmppage
, READ
)
1570 /* Well, this device is dead */
1571 md_error(mddev
, rdev
);
1573 atomic_add(s
, &rdev
->corrected_errors
);
1575 "raid1:%s: read error corrected "
1576 "(%d sectors at %llu on %s)\n",
1578 (unsigned long long)(sect
+
1580 bdevname(rdev
->bdev
, b
));
1589 static void raid1d(mddev_t
*mddev
)
1593 unsigned long flags
;
1594 conf_t
*conf
= mddev
->private;
1595 struct list_head
*head
= &conf
->retry_list
;
1599 md_check_recovery(mddev
);
1602 char b
[BDEVNAME_SIZE
];
1604 unplug
+= flush_pending_writes(conf
);
1606 spin_lock_irqsave(&conf
->device_lock
, flags
);
1607 if (list_empty(head
)) {
1608 spin_unlock_irqrestore(&conf
->device_lock
, flags
);
1611 r1_bio
= list_entry(head
->prev
, r1bio_t
, retry_list
);
1612 list_del(head
->prev
);
1614 spin_unlock_irqrestore(&conf
->device_lock
, flags
);
1616 mddev
= r1_bio
->mddev
;
1617 conf
= mddev
->private;
1618 if (test_bit(R1BIO_IsSync
, &r1_bio
->state
)) {
1619 sync_request_write(mddev
, r1_bio
);
1621 } else if (test_bit(R1BIO_BarrierRetry
, &r1_bio
->state
)) {
1622 /* some requests in the r1bio were BIO_RW_BARRIER
1623 * requests which failed with -EOPNOTSUPP. Hohumm..
1624 * Better resubmit without the barrier.
1625 * We know which devices to resubmit for, because
1626 * all others have had their bios[] entry cleared.
1627 * We already have a nr_pending reference on these rdevs.
1630 const bool do_sync
= bio_rw_flagged(r1_bio
->master_bio
, BIO_RW_SYNCIO
);
1631 clear_bit(R1BIO_BarrierRetry
, &r1_bio
->state
);
1632 clear_bit(R1BIO_Barrier
, &r1_bio
->state
);
1633 for (i
=0; i
< conf
->raid_disks
; i
++)
1634 if (r1_bio
->bios
[i
])
1635 atomic_inc(&r1_bio
->remaining
);
1636 for (i
=0; i
< conf
->raid_disks
; i
++)
1637 if (r1_bio
->bios
[i
]) {
1638 struct bio_vec
*bvec
;
1641 bio
= bio_clone(r1_bio
->master_bio
, GFP_NOIO
);
1642 /* copy pages from the failed bio, as
1643 * this might be a write-behind device */
1644 __bio_for_each_segment(bvec
, bio
, j
, 0)
1645 bvec
->bv_page
= bio_iovec_idx(r1_bio
->bios
[i
], j
)->bv_page
;
1646 bio_put(r1_bio
->bios
[i
]);
1647 bio
->bi_sector
= r1_bio
->sector
+
1648 conf
->mirrors
[i
].rdev
->data_offset
;
1649 bio
->bi_bdev
= conf
->mirrors
[i
].rdev
->bdev
;
1650 bio
->bi_end_io
= raid1_end_write_request
;
1651 bio
->bi_rw
= WRITE
|
1652 (do_sync
<< BIO_RW_SYNCIO
);
1653 bio
->bi_private
= r1_bio
;
1654 r1_bio
->bios
[i
] = bio
;
1655 generic_make_request(bio
);
1660 /* we got a read error. Maybe the drive is bad. Maybe just
1661 * the block and we can fix it.
1662 * We freeze all other IO, and try reading the block from
1663 * other devices. When we find one, we re-write
1664 * and check it that fixes the read error.
1665 * This is all done synchronously while the array is
1668 if (mddev
->ro
== 0) {
1670 fix_read_error(conf
, r1_bio
->read_disk
,
1673 unfreeze_array(conf
);
1676 conf
->mirrors
[r1_bio
->read_disk
].rdev
);
1678 bio
= r1_bio
->bios
[r1_bio
->read_disk
];
1679 if ((disk
=read_balance(conf
, r1_bio
)) == -1) {
1680 printk(KERN_ALERT
"raid1: %s: unrecoverable I/O"
1681 " read error for block %llu\n",
1682 bdevname(bio
->bi_bdev
,b
),
1683 (unsigned long long)r1_bio
->sector
);
1684 raid_end_bio_io(r1_bio
);
1686 const bool do_sync
= bio_rw_flagged(r1_bio
->master_bio
, BIO_RW_SYNCIO
);
1687 r1_bio
->bios
[r1_bio
->read_disk
] =
1688 mddev
->ro
? IO_BLOCKED
: NULL
;
1689 r1_bio
->read_disk
= disk
;
1691 bio
= bio_clone(r1_bio
->master_bio
, GFP_NOIO
);
1692 r1_bio
->bios
[r1_bio
->read_disk
] = bio
;
1693 rdev
= conf
->mirrors
[disk
].rdev
;
1694 if (printk_ratelimit())
1695 printk(KERN_ERR
"raid1: %s: redirecting sector %llu to"
1696 " another mirror\n",
1697 bdevname(rdev
->bdev
,b
),
1698 (unsigned long long)r1_bio
->sector
);
1699 bio
->bi_sector
= r1_bio
->sector
+ rdev
->data_offset
;
1700 bio
->bi_bdev
= rdev
->bdev
;
1701 bio
->bi_end_io
= raid1_end_read_request
;
1702 bio
->bi_rw
= READ
| (do_sync
<< BIO_RW_SYNCIO
);
1703 bio
->bi_private
= r1_bio
;
1705 generic_make_request(bio
);
1711 unplug_slaves(mddev
);
1715 static int init_resync(conf_t
*conf
)
1719 buffs
= RESYNC_WINDOW
/ RESYNC_BLOCK_SIZE
;
1720 BUG_ON(conf
->r1buf_pool
);
1721 conf
->r1buf_pool
= mempool_create(buffs
, r1buf_pool_alloc
, r1buf_pool_free
,
1723 if (!conf
->r1buf_pool
)
1725 conf
->next_resync
= 0;
1730 * perform a "sync" on one "block"
1732 * We need to make sure that no normal I/O request - particularly write
1733 * requests - conflict with active sync requests.
1735 * This is achieved by tracking pending requests and a 'barrier' concept
1736 * that can be installed to exclude normal IO requests.
1739 static sector_t
sync_request(mddev_t
*mddev
, sector_t sector_nr
, int *skipped
, int go_faster
)
1741 conf_t
*conf
= mddev
->private;
1744 sector_t max_sector
, nr_sectors
;
1748 int write_targets
= 0, read_targets
= 0;
1750 int still_degraded
= 0;
1752 if (!conf
->r1buf_pool
)
1755 printk("sync start - bitmap %p\n", mddev->bitmap);
1757 if (init_resync(conf
))
1761 max_sector
= mddev
->dev_sectors
;
1762 if (sector_nr
>= max_sector
) {
1763 /* If we aborted, we need to abort the
1764 * sync on the 'current' bitmap chunk (there will
1765 * only be one in raid1 resync.
1766 * We can find the current addess in mddev->curr_resync
1768 if (mddev
->curr_resync
< max_sector
) /* aborted */
1769 bitmap_end_sync(mddev
->bitmap
, mddev
->curr_resync
,
1771 else /* completed sync */
1774 bitmap_close_sync(mddev
->bitmap
);
1779 if (mddev
->bitmap
== NULL
&&
1780 mddev
->recovery_cp
== MaxSector
&&
1781 !test_bit(MD_RECOVERY_REQUESTED
, &mddev
->recovery
) &&
1782 conf
->fullsync
== 0) {
1784 return max_sector
- sector_nr
;
1786 /* before building a request, check if we can skip these blocks..
1787 * This call the bitmap_start_sync doesn't actually record anything
1789 if (!bitmap_start_sync(mddev
->bitmap
, sector_nr
, &sync_blocks
, 1) &&
1790 !conf
->fullsync
&& !test_bit(MD_RECOVERY_REQUESTED
, &mddev
->recovery
)) {
1791 /* We can skip this block, and probably several more */
1796 * If there is non-resync activity waiting for a turn,
1797 * and resync is going fast enough,
1798 * then let it though before starting on this new sync request.
1800 if (!go_faster
&& conf
->nr_waiting
)
1801 msleep_interruptible(1000);
1803 bitmap_cond_end_sync(mddev
->bitmap
, sector_nr
);
1804 raise_barrier(conf
);
1806 conf
->next_resync
= sector_nr
;
1808 r1_bio
= mempool_alloc(conf
->r1buf_pool
, GFP_NOIO
);
1811 * If we get a correctably read error during resync or recovery,
1812 * we might want to read from a different device. So we
1813 * flag all drives that could conceivably be read from for READ,
1814 * and any others (which will be non-In_sync devices) for WRITE.
1815 * If a read fails, we try reading from something else for which READ
1819 r1_bio
->mddev
= mddev
;
1820 r1_bio
->sector
= sector_nr
;
1822 set_bit(R1BIO_IsSync
, &r1_bio
->state
);
1824 for (i
=0; i
< conf
->raid_disks
; i
++) {
1826 bio
= r1_bio
->bios
[i
];
1828 /* take from bio_init */
1829 bio
->bi_next
= NULL
;
1830 bio
->bi_flags
|= 1 << BIO_UPTODATE
;
1834 bio
->bi_phys_segments
= 0;
1836 bio
->bi_end_io
= NULL
;
1837 bio
->bi_private
= NULL
;
1839 rdev
= rcu_dereference(conf
->mirrors
[i
].rdev
);
1841 test_bit(Faulty
, &rdev
->flags
)) {
1844 } else if (!test_bit(In_sync
, &rdev
->flags
)) {
1846 bio
->bi_end_io
= end_sync_write
;
1849 /* may need to read from here */
1851 bio
->bi_end_io
= end_sync_read
;
1852 if (test_bit(WriteMostly
, &rdev
->flags
)) {
1861 atomic_inc(&rdev
->nr_pending
);
1862 bio
->bi_sector
= sector_nr
+ rdev
->data_offset
;
1863 bio
->bi_bdev
= rdev
->bdev
;
1864 bio
->bi_private
= r1_bio
;
1869 r1_bio
->read_disk
= disk
;
1871 if (test_bit(MD_RECOVERY_SYNC
, &mddev
->recovery
) && read_targets
> 0)
1872 /* extra read targets are also write targets */
1873 write_targets
+= read_targets
-1;
1875 if (write_targets
== 0 || read_targets
== 0) {
1876 /* There is nowhere to write, so all non-sync
1877 * drives must be failed - so we are finished
1879 sector_t rv
= max_sector
- sector_nr
;
1885 if (max_sector
> mddev
->resync_max
)
1886 max_sector
= mddev
->resync_max
; /* Don't do IO beyond here */
1891 int len
= PAGE_SIZE
;
1892 if (sector_nr
+ (len
>>9) > max_sector
)
1893 len
= (max_sector
- sector_nr
) << 9;
1896 if (sync_blocks
== 0) {
1897 if (!bitmap_start_sync(mddev
->bitmap
, sector_nr
,
1898 &sync_blocks
, still_degraded
) &&
1900 !test_bit(MD_RECOVERY_REQUESTED
, &mddev
->recovery
))
1902 BUG_ON(sync_blocks
< (PAGE_SIZE
>>9));
1903 if (len
> (sync_blocks
<<9))
1904 len
= sync_blocks
<<9;
1907 for (i
=0 ; i
< conf
->raid_disks
; i
++) {
1908 bio
= r1_bio
->bios
[i
];
1909 if (bio
->bi_end_io
) {
1910 page
= bio
->bi_io_vec
[bio
->bi_vcnt
].bv_page
;
1911 if (bio_add_page(bio
, page
, len
, 0) == 0) {
1913 bio
->bi_io_vec
[bio
->bi_vcnt
].bv_page
= page
;
1916 bio
= r1_bio
->bios
[i
];
1917 if (bio
->bi_end_io
==NULL
)
1919 /* remove last page from this bio */
1921 bio
->bi_size
-= len
;
1922 bio
->bi_flags
&= ~(1<< BIO_SEG_VALID
);
1928 nr_sectors
+= len
>>9;
1929 sector_nr
+= len
>>9;
1930 sync_blocks
-= (len
>>9);
1931 } while (r1_bio
->bios
[disk
]->bi_vcnt
< RESYNC_PAGES
);
1933 r1_bio
->sectors
= nr_sectors
;
1935 /* For a user-requested sync, we read all readable devices and do a
1938 if (test_bit(MD_RECOVERY_REQUESTED
, &mddev
->recovery
)) {
1939 atomic_set(&r1_bio
->remaining
, read_targets
);
1940 for (i
=0; i
<conf
->raid_disks
; i
++) {
1941 bio
= r1_bio
->bios
[i
];
1942 if (bio
->bi_end_io
== end_sync_read
) {
1943 md_sync_acct(bio
->bi_bdev
, nr_sectors
);
1944 generic_make_request(bio
);
1948 atomic_set(&r1_bio
->remaining
, 1);
1949 bio
= r1_bio
->bios
[r1_bio
->read_disk
];
1950 md_sync_acct(bio
->bi_bdev
, nr_sectors
);
1951 generic_make_request(bio
);
1957 static sector_t
raid1_size(mddev_t
*mddev
, sector_t sectors
, int raid_disks
)
1962 return mddev
->dev_sectors
;
1965 static conf_t
*setup_conf(mddev_t
*mddev
)
1969 mirror_info_t
*disk
;
1973 conf
= kzalloc(sizeof(conf_t
), GFP_KERNEL
);
1977 conf
->mirrors
= kzalloc(sizeof(struct mirror_info
)*mddev
->raid_disks
,
1982 conf
->tmppage
= alloc_page(GFP_KERNEL
);
1986 conf
->poolinfo
= kzalloc(sizeof(*conf
->poolinfo
), GFP_KERNEL
);
1987 if (!conf
->poolinfo
)
1989 conf
->poolinfo
->raid_disks
= mddev
->raid_disks
;
1990 conf
->r1bio_pool
= mempool_create(NR_RAID1_BIOS
, r1bio_pool_alloc
,
1993 if (!conf
->r1bio_pool
)
1996 conf
->poolinfo
->mddev
= mddev
;
1998 spin_lock_init(&conf
->device_lock
);
1999 list_for_each_entry(rdev
, &mddev
->disks
, same_set
) {
2000 int disk_idx
= rdev
->raid_disk
;
2001 if (disk_idx
>= mddev
->raid_disks
2004 disk
= conf
->mirrors
+ disk_idx
;
2008 disk
->head_position
= 0;
2010 conf
->raid_disks
= mddev
->raid_disks
;
2011 conf
->mddev
= mddev
;
2012 INIT_LIST_HEAD(&conf
->retry_list
);
2014 spin_lock_init(&conf
->resync_lock
);
2015 init_waitqueue_head(&conf
->wait_barrier
);
2017 bio_list_init(&conf
->pending_bio_list
);
2018 bio_list_init(&conf
->flushing_bio_list
);
2020 conf
->last_used
= -1;
2021 for (i
= 0; i
< conf
->raid_disks
; i
++) {
2023 disk
= conf
->mirrors
+ i
;
2026 !test_bit(In_sync
, &disk
->rdev
->flags
)) {
2027 disk
->head_position
= 0;
2030 } else if (conf
->last_used
< 0)
2032 * The first working device is used as a
2033 * starting point to read balancing.
2035 conf
->last_used
= i
;
2039 if (conf
->last_used
< 0) {
2040 printk(KERN_ERR
"raid1: no operational mirrors for %s\n",
2045 conf
->thread
= md_register_thread(raid1d
, mddev
, NULL
);
2046 if (!conf
->thread
) {
2048 "raid1: couldn't allocate thread for %s\n",
2057 if (conf
->r1bio_pool
)
2058 mempool_destroy(conf
->r1bio_pool
);
2059 kfree(conf
->mirrors
);
2060 safe_put_page(conf
->tmppage
);
2061 kfree(conf
->poolinfo
);
2064 return ERR_PTR(err
);
2067 static int run(mddev_t
*mddev
)
2073 if (mddev
->level
!= 1) {
2074 printk("raid1: %s: raid level not set to mirroring (%d)\n",
2075 mdname(mddev
), mddev
->level
);
2078 if (mddev
->reshape_position
!= MaxSector
) {
2079 printk("raid1: %s: reshape_position set but not supported\n",
2084 * copy the already verified devices into our private RAID1
2085 * bookkeeping area. [whatever we allocate in run(),
2086 * should be freed in stop()]
2088 if (mddev
->private == NULL
)
2089 conf
= setup_conf(mddev
);
2091 conf
= mddev
->private;
2094 return PTR_ERR(conf
);
2096 mddev
->queue
->queue_lock
= &conf
->device_lock
;
2097 list_for_each_entry(rdev
, &mddev
->disks
, same_set
) {
2098 disk_stack_limits(mddev
->gendisk
, rdev
->bdev
,
2099 rdev
->data_offset
<< 9);
2100 /* as we don't honour merge_bvec_fn, we must never risk
2101 * violating it, so limit ->max_sector to one PAGE, as
2102 * a one page request is never in violation.
2104 if (rdev
->bdev
->bd_disk
->queue
->merge_bvec_fn
&&
2105 queue_max_sectors(mddev
->queue
) > (PAGE_SIZE
>>9))
2106 blk_queue_max_sectors(mddev
->queue
, PAGE_SIZE
>>9);
2109 mddev
->degraded
= 0;
2110 for (i
=0; i
< conf
->raid_disks
; i
++)
2111 if (conf
->mirrors
[i
].rdev
== NULL
||
2112 !test_bit(In_sync
, &conf
->mirrors
[i
].rdev
->flags
) ||
2113 test_bit(Faulty
, &conf
->mirrors
[i
].rdev
->flags
))
2116 if (conf
->raid_disks
- mddev
->degraded
== 1)
2117 mddev
->recovery_cp
= MaxSector
;
2119 if (mddev
->recovery_cp
!= MaxSector
)
2120 printk(KERN_NOTICE
"raid1: %s is not clean"
2121 " -- starting background reconstruction\n",
2124 "raid1: raid set %s active with %d out of %d mirrors\n",
2125 mdname(mddev
), mddev
->raid_disks
- mddev
->degraded
,
2129 * Ok, everything is just fine now
2131 mddev
->thread
= conf
->thread
;
2132 conf
->thread
= NULL
;
2133 mddev
->private = conf
;
2135 md_set_array_sectors(mddev
, raid1_size(mddev
, 0, 0));
2137 mddev
->queue
->unplug_fn
= raid1_unplug
;
2138 mddev
->queue
->backing_dev_info
.congested_fn
= raid1_congested
;
2139 mddev
->queue
->backing_dev_info
.congested_data
= mddev
;
2140 md_integrity_register(mddev
);
2144 static int stop(mddev_t
*mddev
)
2146 conf_t
*conf
= mddev
->private;
2147 struct bitmap
*bitmap
= mddev
->bitmap
;
2148 int behind_wait
= 0;
2150 /* wait for behind writes to complete */
2151 while (bitmap
&& atomic_read(&bitmap
->behind_writes
) > 0) {
2153 printk(KERN_INFO
"raid1: behind writes in progress on device %s, waiting to stop (%d)\n", mdname(mddev
), behind_wait
);
2154 set_current_state(TASK_UNINTERRUPTIBLE
);
2155 schedule_timeout(HZ
); /* wait a second */
2156 /* need to kick something here to make sure I/O goes? */
2159 raise_barrier(conf
);
2160 lower_barrier(conf
);
2162 md_unregister_thread(mddev
->thread
);
2163 mddev
->thread
= NULL
;
2164 blk_sync_queue(mddev
->queue
); /* the unplug fn references 'conf'*/
2165 if (conf
->r1bio_pool
)
2166 mempool_destroy(conf
->r1bio_pool
);
2167 kfree(conf
->mirrors
);
2168 kfree(conf
->poolinfo
);
2170 mddev
->private = NULL
;
2174 static int raid1_resize(mddev_t
*mddev
, sector_t sectors
)
2176 /* no resync is happening, and there is enough space
2177 * on all devices, so we can resize.
2178 * We need to make sure resync covers any new space.
2179 * If the array is shrinking we should possibly wait until
2180 * any io in the removed space completes, but it hardly seems
2183 md_set_array_sectors(mddev
, raid1_size(mddev
, sectors
, 0));
2184 if (mddev
->array_sectors
> raid1_size(mddev
, sectors
, 0))
2186 set_capacity(mddev
->gendisk
, mddev
->array_sectors
);
2188 revalidate_disk(mddev
->gendisk
);
2189 if (sectors
> mddev
->dev_sectors
&&
2190 mddev
->recovery_cp
== MaxSector
) {
2191 mddev
->recovery_cp
= mddev
->dev_sectors
;
2192 set_bit(MD_RECOVERY_NEEDED
, &mddev
->recovery
);
2194 mddev
->dev_sectors
= sectors
;
2195 mddev
->resync_max_sectors
= sectors
;
2199 static int raid1_reshape(mddev_t
*mddev
)
2202 * 1/ resize the r1bio_pool
2203 * 2/ resize conf->mirrors
2205 * We allocate a new r1bio_pool if we can.
2206 * Then raise a device barrier and wait until all IO stops.
2207 * Then resize conf->mirrors and swap in the new r1bio pool.
2209 * At the same time, we "pack" the devices so that all the missing
2210 * devices have the higher raid_disk numbers.
2212 mempool_t
*newpool
, *oldpool
;
2213 struct pool_info
*newpoolinfo
;
2214 mirror_info_t
*newmirrors
;
2215 conf_t
*conf
= mddev
->private;
2216 int cnt
, raid_disks
;
2217 unsigned long flags
;
2220 /* Cannot change chunk_size, layout, or level */
2221 if (mddev
->chunk_sectors
!= mddev
->new_chunk_sectors
||
2222 mddev
->layout
!= mddev
->new_layout
||
2223 mddev
->level
!= mddev
->new_level
) {
2224 mddev
->new_chunk_sectors
= mddev
->chunk_sectors
;
2225 mddev
->new_layout
= mddev
->layout
;
2226 mddev
->new_level
= mddev
->level
;
2230 err
= md_allow_write(mddev
);
2234 raid_disks
= mddev
->raid_disks
+ mddev
->delta_disks
;
2236 if (raid_disks
< conf
->raid_disks
) {
2238 for (d
= 0; d
< conf
->raid_disks
; d
++)
2239 if (conf
->mirrors
[d
].rdev
)
2241 if (cnt
> raid_disks
)
2245 newpoolinfo
= kmalloc(sizeof(*newpoolinfo
), GFP_KERNEL
);
2248 newpoolinfo
->mddev
= mddev
;
2249 newpoolinfo
->raid_disks
= raid_disks
;
2251 newpool
= mempool_create(NR_RAID1_BIOS
, r1bio_pool_alloc
,
2252 r1bio_pool_free
, newpoolinfo
);
2257 newmirrors
= kzalloc(sizeof(struct mirror_info
) * raid_disks
, GFP_KERNEL
);
2260 mempool_destroy(newpool
);
2264 raise_barrier(conf
);
2266 /* ok, everything is stopped */
2267 oldpool
= conf
->r1bio_pool
;
2268 conf
->r1bio_pool
= newpool
;
2270 for (d
= d2
= 0; d
< conf
->raid_disks
; d
++) {
2271 mdk_rdev_t
*rdev
= conf
->mirrors
[d
].rdev
;
2272 if (rdev
&& rdev
->raid_disk
!= d2
) {
2274 sprintf(nm
, "rd%d", rdev
->raid_disk
);
2275 sysfs_remove_link(&mddev
->kobj
, nm
);
2276 rdev
->raid_disk
= d2
;
2277 sprintf(nm
, "rd%d", rdev
->raid_disk
);
2278 sysfs_remove_link(&mddev
->kobj
, nm
);
2279 if (sysfs_create_link(&mddev
->kobj
,
2282 "md/raid1: cannot register "
2287 newmirrors
[d2
++].rdev
= rdev
;
2289 kfree(conf
->mirrors
);
2290 conf
->mirrors
= newmirrors
;
2291 kfree(conf
->poolinfo
);
2292 conf
->poolinfo
= newpoolinfo
;
2294 spin_lock_irqsave(&conf
->device_lock
, flags
);
2295 mddev
->degraded
+= (raid_disks
- conf
->raid_disks
);
2296 spin_unlock_irqrestore(&conf
->device_lock
, flags
);
2297 conf
->raid_disks
= mddev
->raid_disks
= raid_disks
;
2298 mddev
->delta_disks
= 0;
2300 conf
->last_used
= 0; /* just make sure it is in-range */
2301 lower_barrier(conf
);
2303 set_bit(MD_RECOVERY_NEEDED
, &mddev
->recovery
);
2304 md_wakeup_thread(mddev
->thread
);
2306 mempool_destroy(oldpool
);
2310 static void raid1_quiesce(mddev_t
*mddev
, int state
)
2312 conf_t
*conf
= mddev
->private;
2315 case 2: /* wake for suspend */
2316 wake_up(&conf
->wait_barrier
);
2319 raise_barrier(conf
);
2322 lower_barrier(conf
);
2327 static void *raid1_takeover(mddev_t
*mddev
)
2329 /* raid1 can take over:
2330 * raid5 with 2 devices, any layout or chunk size
2332 if (mddev
->level
== 5 && mddev
->raid_disks
== 2) {
2334 mddev
->new_level
= 1;
2335 mddev
->new_layout
= 0;
2336 mddev
->new_chunk_sectors
= 0;
2337 conf
= setup_conf(mddev
);
2342 return ERR_PTR(-EINVAL
);
2345 static struct mdk_personality raid1_personality
=
2349 .owner
= THIS_MODULE
,
2350 .make_request
= make_request
,
2354 .error_handler
= error
,
2355 .hot_add_disk
= raid1_add_disk
,
2356 .hot_remove_disk
= raid1_remove_disk
,
2357 .spare_active
= raid1_spare_active
,
2358 .sync_request
= sync_request
,
2359 .resize
= raid1_resize
,
2361 .check_reshape
= raid1_reshape
,
2362 .quiesce
= raid1_quiesce
,
2363 .takeover
= raid1_takeover
,
2366 static int __init
raid_init(void)
2368 return register_md_personality(&raid1_personality
);
2371 static void raid_exit(void)
2373 unregister_md_personality(&raid1_personality
);
2376 module_init(raid_init
);
2377 module_exit(raid_exit
);
2378 MODULE_LICENSE("GPL");
2379 MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD");
2380 MODULE_ALIAS("md-personality-3"); /* RAID1 */
2381 MODULE_ALIAS("md-raid1");
2382 MODULE_ALIAS("md-level-1");