]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
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 | * | |
96de0e25 | 12 | * Fixes to reconstruction by Jakob Østergaard" <jakob@ostenfeld.dk> |
1da177e4 LT |
13 | * Various fixes by Neil Brown <neilb@cse.unsw.edu.au> |
14 | * | |
191ea9b2 N |
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 | * | |
1da177e4 LT |
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 | ||
5a0e3ad6 | 34 | #include <linux/slab.h> |
25570727 | 35 | #include <linux/delay.h> |
bff61975 | 36 | #include <linux/blkdev.h> |
bff61975 | 37 | #include <linux/seq_file.h> |
43b2e5d8 | 38 | #include "md.h" |
ef740c37 CH |
39 | #include "raid1.h" |
40 | #include "bitmap.h" | |
191ea9b2 N |
41 | |
42 | #define DEBUG 0 | |
43 | #if DEBUG | |
44 | #define PRINTK(x...) printk(x) | |
45 | #else | |
46 | #define PRINTK(x...) | |
47 | #endif | |
1da177e4 LT |
48 | |
49 | /* | |
50 | * Number of guaranteed r1bios in case of extreme VM load: | |
51 | */ | |
52 | #define NR_RAID1_BIOS 256 | |
53 | ||
1da177e4 | 54 | |
17999be4 N |
55 | static void allow_barrier(conf_t *conf); |
56 | static void lower_barrier(conf_t *conf); | |
1da177e4 | 57 | |
dd0fc66f | 58 | static void * r1bio_pool_alloc(gfp_t gfp_flags, void *data) |
1da177e4 LT |
59 | { |
60 | struct pool_info *pi = data; | |
1da177e4 LT |
61 | int size = offsetof(r1bio_t, bios[pi->raid_disks]); |
62 | ||
63 | /* allocate a r1bio with room for raid_disks entries in the bios array */ | |
7eaceacc | 64 | return kzalloc(size, gfp_flags); |
1da177e4 LT |
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 | ||
dd0fc66f | 78 | static void * r1buf_pool_alloc(gfp_t gfp_flags, void *data) |
1da177e4 LT |
79 | { |
80 | struct pool_info *pi = data; | |
81 | struct page *page; | |
82 | r1bio_t *r1_bio; | |
83 | struct bio *bio; | |
84 | int i, j; | |
85 | ||
86 | r1_bio = r1bio_pool_alloc(gfp_flags, pi); | |
7eaceacc | 87 | if (!r1_bio) |
1da177e4 | 88 | return NULL; |
1da177e4 LT |
89 | |
90 | /* | |
91 | * Allocate bios : 1 for reading, n-1 for writing | |
92 | */ | |
93 | for (j = pi->raid_disks ; j-- ; ) { | |
6746557f | 94 | bio = bio_kmalloc(gfp_flags, RESYNC_PAGES); |
1da177e4 LT |
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 | |
d11c171e N |
101 | * the first bio. |
102 | * If this is a user-requested check/repair, allocate | |
103 | * RESYNC_PAGES for each bio. | |
1da177e4 | 104 | */ |
d11c171e N |
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; | |
303a0e11 | 117 | bio->bi_vcnt = i+1; |
d11c171e N |
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; | |
1da177e4 LT |
126 | } |
127 | ||
128 | r1_bio->master_bio = NULL; | |
129 | ||
130 | return r1_bio; | |
131 | ||
132 | out_free_pages: | |
303a0e11 N |
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); | |
d11c171e | 136 | j = -1; |
1da177e4 LT |
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; | |
d11c171e | 147 | int i,j; |
1da177e4 | 148 | r1bio_t *r1bio = __r1_bio; |
1da177e4 | 149 | |
d11c171e N |
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) | |
1345b1d8 | 155 | safe_put_page(r1bio->bios[j]->bi_io_vec[i].bv_page); |
d11c171e | 156 | } |
1da177e4 LT |
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(conf_t *conf, r1bio_t *r1_bio) | |
164 | { | |
165 | int i; | |
166 | ||
167 | for (i = 0; i < conf->raid_disks; i++) { | |
168 | struct bio **bio = r1_bio->bios + i; | |
cf30a473 | 169 | if (*bio && *bio != IO_BLOCKED) |
1da177e4 LT |
170 | bio_put(*bio); |
171 | *bio = NULL; | |
172 | } | |
173 | } | |
174 | ||
858119e1 | 175 | static void free_r1bio(r1bio_t *r1_bio) |
1da177e4 | 176 | { |
070ec55d | 177 | conf_t *conf = r1_bio->mddev->private; |
1da177e4 LT |
178 | |
179 | /* | |
180 | * Wake up any possible resync thread that waits for the device | |
181 | * to go idle. | |
182 | */ | |
17999be4 | 183 | allow_barrier(conf); |
1da177e4 LT |
184 | |
185 | put_all_bios(conf, r1_bio); | |
186 | mempool_free(r1_bio, conf->r1bio_pool); | |
187 | } | |
188 | ||
858119e1 | 189 | static void put_buf(r1bio_t *r1_bio) |
1da177e4 | 190 | { |
070ec55d | 191 | conf_t *conf = r1_bio->mddev->private; |
3e198f78 N |
192 | int i; |
193 | ||
194 | for (i=0; i<conf->raid_disks; i++) { | |
195 | struct bio *bio = r1_bio->bios[i]; | |
196 | if (bio->bi_end_io) | |
197 | rdev_dec_pending(conf->mirrors[i].rdev, r1_bio->mddev); | |
198 | } | |
1da177e4 LT |
199 | |
200 | mempool_free(r1_bio, conf->r1buf_pool); | |
201 | ||
17999be4 | 202 | lower_barrier(conf); |
1da177e4 LT |
203 | } |
204 | ||
205 | static void reschedule_retry(r1bio_t *r1_bio) | |
206 | { | |
207 | unsigned long flags; | |
208 | mddev_t *mddev = r1_bio->mddev; | |
070ec55d | 209 | conf_t *conf = mddev->private; |
1da177e4 LT |
210 | |
211 | spin_lock_irqsave(&conf->device_lock, flags); | |
212 | list_add(&r1_bio->retry_list, &conf->retry_list); | |
ddaf22ab | 213 | conf->nr_queued ++; |
1da177e4 LT |
214 | spin_unlock_irqrestore(&conf->device_lock, flags); |
215 | ||
17999be4 | 216 | wake_up(&conf->wait_barrier); |
1da177e4 LT |
217 | md_wakeup_thread(mddev->thread); |
218 | } | |
219 | ||
220 | /* | |
221 | * raid_end_bio_io() is called when we have finished servicing a mirrored | |
222 | * operation and are ready to return a success/failure code to the buffer | |
223 | * cache layer. | |
224 | */ | |
225 | static void raid_end_bio_io(r1bio_t *r1_bio) | |
226 | { | |
227 | struct bio *bio = r1_bio->master_bio; | |
228 | ||
4b6d287f N |
229 | /* if nobody has done the final endio yet, do it now */ |
230 | if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) { | |
231 | PRINTK(KERN_DEBUG "raid1: sync end %s on sectors %llu-%llu\n", | |
232 | (bio_data_dir(bio) == WRITE) ? "write" : "read", | |
233 | (unsigned long long) bio->bi_sector, | |
234 | (unsigned long long) bio->bi_sector + | |
235 | (bio->bi_size >> 9) - 1); | |
236 | ||
6712ecf8 | 237 | bio_endio(bio, |
4b6d287f N |
238 | test_bit(R1BIO_Uptodate, &r1_bio->state) ? 0 : -EIO); |
239 | } | |
1da177e4 LT |
240 | free_r1bio(r1_bio); |
241 | } | |
242 | ||
243 | /* | |
244 | * Update disk head position estimator based on IRQ completion info. | |
245 | */ | |
246 | static inline void update_head_pos(int disk, r1bio_t *r1_bio) | |
247 | { | |
070ec55d | 248 | conf_t *conf = r1_bio->mddev->private; |
1da177e4 LT |
249 | |
250 | conf->mirrors[disk].head_position = | |
251 | r1_bio->sector + (r1_bio->sectors); | |
252 | } | |
253 | ||
6712ecf8 | 254 | static void raid1_end_read_request(struct bio *bio, int error) |
1da177e4 LT |
255 | { |
256 | int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); | |
7b92813c | 257 | r1bio_t *r1_bio = bio->bi_private; |
1da177e4 | 258 | int mirror; |
070ec55d | 259 | conf_t *conf = r1_bio->mddev->private; |
1da177e4 | 260 | |
1da177e4 LT |
261 | mirror = r1_bio->read_disk; |
262 | /* | |
263 | * this branch is our 'one mirror IO has finished' event handler: | |
264 | */ | |
ddaf22ab N |
265 | update_head_pos(mirror, r1_bio); |
266 | ||
dd00a99e N |
267 | if (uptodate) |
268 | set_bit(R1BIO_Uptodate, &r1_bio->state); | |
269 | else { | |
270 | /* If all other devices have failed, we want to return | |
271 | * the error upwards rather than fail the last device. | |
272 | * Here we redefine "uptodate" to mean "Don't want to retry" | |
1da177e4 | 273 | */ |
dd00a99e N |
274 | unsigned long flags; |
275 | spin_lock_irqsave(&conf->device_lock, flags); | |
276 | if (r1_bio->mddev->degraded == conf->raid_disks || | |
277 | (r1_bio->mddev->degraded == conf->raid_disks-1 && | |
278 | !test_bit(Faulty, &conf->mirrors[mirror].rdev->flags))) | |
279 | uptodate = 1; | |
280 | spin_unlock_irqrestore(&conf->device_lock, flags); | |
281 | } | |
1da177e4 | 282 | |
dd00a99e | 283 | if (uptodate) |
1da177e4 | 284 | raid_end_bio_io(r1_bio); |
dd00a99e | 285 | else { |
1da177e4 LT |
286 | /* |
287 | * oops, read error: | |
288 | */ | |
289 | char b[BDEVNAME_SIZE]; | |
290 | if (printk_ratelimit()) | |
9dd1e2fa N |
291 | printk(KERN_ERR "md/raid1:%s: %s: rescheduling sector %llu\n", |
292 | mdname(conf->mddev), | |
1da177e4 LT |
293 | bdevname(conf->mirrors[mirror].rdev->bdev,b), (unsigned long long)r1_bio->sector); |
294 | reschedule_retry(r1_bio); | |
295 | } | |
296 | ||
297 | rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev); | |
1da177e4 LT |
298 | } |
299 | ||
4e78064f N |
300 | static void r1_bio_write_done(r1bio_t *r1_bio, int vcnt, struct bio_vec *bv, |
301 | int behind) | |
302 | { | |
303 | if (atomic_dec_and_test(&r1_bio->remaining)) | |
304 | { | |
305 | /* it really is the end of this request */ | |
306 | if (test_bit(R1BIO_BehindIO, &r1_bio->state)) { | |
307 | /* free extra copy of the data pages */ | |
308 | int i = vcnt; | |
309 | while (i--) | |
310 | safe_put_page(bv[i].bv_page); | |
311 | } | |
312 | /* clear the bitmap if all writes complete successfully */ | |
313 | bitmap_endwrite(r1_bio->mddev->bitmap, r1_bio->sector, | |
314 | r1_bio->sectors, | |
315 | !test_bit(R1BIO_Degraded, &r1_bio->state), | |
316 | behind); | |
317 | md_write_end(r1_bio->mddev); | |
318 | raid_end_bio_io(r1_bio); | |
319 | } | |
320 | } | |
321 | ||
6712ecf8 | 322 | static void raid1_end_write_request(struct bio *bio, int error) |
1da177e4 LT |
323 | { |
324 | int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); | |
7b92813c | 325 | r1bio_t *r1_bio = bio->bi_private; |
a9701a30 | 326 | int mirror, behind = test_bit(R1BIO_BehindIO, &r1_bio->state); |
070ec55d | 327 | conf_t *conf = r1_bio->mddev->private; |
04b857f7 | 328 | struct bio *to_put = NULL; |
1da177e4 | 329 | |
1da177e4 LT |
330 | |
331 | for (mirror = 0; mirror < conf->raid_disks; mirror++) | |
332 | if (r1_bio->bios[mirror] == bio) | |
333 | break; | |
334 | ||
e9c7469b TH |
335 | /* |
336 | * 'one mirror IO has finished' event handler: | |
337 | */ | |
338 | r1_bio->bios[mirror] = NULL; | |
339 | to_put = bio; | |
340 | if (!uptodate) { | |
341 | md_error(r1_bio->mddev, conf->mirrors[mirror].rdev); | |
342 | /* an I/O failed, we can't clear the bitmap */ | |
343 | set_bit(R1BIO_Degraded, &r1_bio->state); | |
344 | } else | |
1da177e4 | 345 | /* |
e9c7469b TH |
346 | * Set R1BIO_Uptodate in our master bio, so that we |
347 | * will return a good error code for to the higher | |
348 | * levels even if IO on some other mirrored buffer | |
349 | * fails. | |
350 | * | |
351 | * The 'master' represents the composite IO operation | |
352 | * to user-side. So if something waits for IO, then it | |
353 | * will wait for the 'master' bio. | |
1da177e4 | 354 | */ |
e9c7469b TH |
355 | set_bit(R1BIO_Uptodate, &r1_bio->state); |
356 | ||
357 | update_head_pos(mirror, r1_bio); | |
358 | ||
359 | if (behind) { | |
360 | if (test_bit(WriteMostly, &conf->mirrors[mirror].rdev->flags)) | |
361 | atomic_dec(&r1_bio->behind_remaining); | |
362 | ||
363 | /* | |
364 | * In behind mode, we ACK the master bio once the I/O | |
365 | * has safely reached all non-writemostly | |
366 | * disks. Setting the Returned bit ensures that this | |
367 | * gets done only once -- we don't ever want to return | |
368 | * -EIO here, instead we'll wait | |
369 | */ | |
370 | if (atomic_read(&r1_bio->behind_remaining) >= (atomic_read(&r1_bio->remaining)-1) && | |
371 | test_bit(R1BIO_Uptodate, &r1_bio->state)) { | |
372 | /* Maybe we can return now */ | |
373 | if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) { | |
374 | struct bio *mbio = r1_bio->master_bio; | |
375 | PRINTK(KERN_DEBUG "raid1: behind end write sectors %llu-%llu\n", | |
376 | (unsigned long long) mbio->bi_sector, | |
377 | (unsigned long long) mbio->bi_sector + | |
378 | (mbio->bi_size >> 9) - 1); | |
379 | bio_endio(mbio, 0); | |
4b6d287f N |
380 | } |
381 | } | |
382 | } | |
e9c7469b TH |
383 | rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev); |
384 | ||
1da177e4 | 385 | /* |
1da177e4 LT |
386 | * Let's see if all mirrored write operations have finished |
387 | * already. | |
388 | */ | |
4e78064f | 389 | r1_bio_write_done(r1_bio, bio->bi_vcnt, bio->bi_io_vec, behind); |
c70810b3 | 390 | |
04b857f7 N |
391 | if (to_put) |
392 | bio_put(to_put); | |
1da177e4 LT |
393 | } |
394 | ||
395 | ||
396 | /* | |
397 | * This routine returns the disk from which the requested read should | |
398 | * be done. There is a per-array 'next expected sequential IO' sector | |
399 | * number - if this matches on the next IO then we use the last disk. | |
400 | * There is also a per-disk 'last know head position' sector that is | |
401 | * maintained from IRQ contexts, both the normal and the resync IO | |
402 | * completion handlers update this position correctly. If there is no | |
403 | * perfect sequential match then we pick the disk whose head is closest. | |
404 | * | |
405 | * If there are 2 mirrors in the same 2 devices, performance degrades | |
406 | * because position is mirror, not device based. | |
407 | * | |
408 | * The rdev for the device selected will have nr_pending incremented. | |
409 | */ | |
410 | static int read_balance(conf_t *conf, r1bio_t *r1_bio) | |
411 | { | |
af3a2cd6 | 412 | const sector_t this_sector = r1_bio->sector; |
1da177e4 | 413 | const int sectors = r1_bio->sectors; |
f3ac8bf7 | 414 | int start_disk; |
76073054 | 415 | int best_disk; |
f3ac8bf7 | 416 | int i; |
76073054 | 417 | sector_t best_dist; |
8ddf9efe | 418 | mdk_rdev_t *rdev; |
f3ac8bf7 | 419 | int choose_first; |
1da177e4 LT |
420 | |
421 | rcu_read_lock(); | |
422 | /* | |
8ddf9efe | 423 | * Check if we can balance. We can balance on the whole |
1da177e4 LT |
424 | * device if no resync is going on, or below the resync window. |
425 | * We take the first readable disk when above the resync window. | |
426 | */ | |
427 | retry: | |
76073054 N |
428 | best_disk = -1; |
429 | best_dist = MaxSector; | |
1da177e4 LT |
430 | if (conf->mddev->recovery_cp < MaxSector && |
431 | (this_sector + sectors >= conf->next_resync)) { | |
f3ac8bf7 N |
432 | choose_first = 1; |
433 | start_disk = 0; | |
434 | } else { | |
435 | choose_first = 0; | |
436 | start_disk = conf->last_used; | |
1da177e4 LT |
437 | } |
438 | ||
f3ac8bf7 | 439 | for (i = 0 ; i < conf->raid_disks ; i++) { |
76073054 | 440 | sector_t dist; |
f3ac8bf7 N |
441 | int disk = start_disk + i; |
442 | if (disk >= conf->raid_disks) | |
443 | disk -= conf->raid_disks; | |
444 | ||
445 | rdev = rcu_dereference(conf->mirrors[disk].rdev); | |
446 | if (r1_bio->bios[disk] == IO_BLOCKED | |
447 | || rdev == NULL | |
76073054 | 448 | || test_bit(Faulty, &rdev->flags)) |
f3ac8bf7 | 449 | continue; |
76073054 N |
450 | if (!test_bit(In_sync, &rdev->flags) && |
451 | rdev->recovery_offset < this_sector + sectors) | |
1da177e4 | 452 | continue; |
76073054 N |
453 | if (test_bit(WriteMostly, &rdev->flags)) { |
454 | /* Don't balance among write-mostly, just | |
455 | * use the first as a last resort */ | |
456 | if (best_disk < 0) | |
457 | best_disk = disk; | |
458 | continue; | |
459 | } | |
460 | /* This is a reasonable device to use. It might | |
461 | * even be best. | |
462 | */ | |
463 | dist = abs(this_sector - conf->mirrors[disk].head_position); | |
464 | if (choose_first | |
465 | /* Don't change to another disk for sequential reads */ | |
466 | || conf->next_seq_sect == this_sector | |
467 | || dist == 0 | |
468 | /* If device is idle, use it */ | |
469 | || atomic_read(&rdev->nr_pending) == 0) { | |
470 | best_disk = disk; | |
1da177e4 LT |
471 | break; |
472 | } | |
76073054 N |
473 | if (dist < best_dist) { |
474 | best_dist = dist; | |
475 | best_disk = disk; | |
1da177e4 | 476 | } |
f3ac8bf7 | 477 | } |
1da177e4 | 478 | |
76073054 N |
479 | if (best_disk >= 0) { |
480 | rdev = rcu_dereference(conf->mirrors[best_disk].rdev); | |
8ddf9efe N |
481 | if (!rdev) |
482 | goto retry; | |
483 | atomic_inc(&rdev->nr_pending); | |
76073054 | 484 | if (test_bit(Faulty, &rdev->flags)) { |
1da177e4 LT |
485 | /* cannot risk returning a device that failed |
486 | * before we inc'ed nr_pending | |
487 | */ | |
03c902e1 | 488 | rdev_dec_pending(rdev, conf->mddev); |
1da177e4 LT |
489 | goto retry; |
490 | } | |
8ddf9efe | 491 | conf->next_seq_sect = this_sector + sectors; |
76073054 | 492 | conf->last_used = best_disk; |
1da177e4 LT |
493 | } |
494 | rcu_read_unlock(); | |
495 | ||
76073054 | 496 | return best_disk; |
1da177e4 LT |
497 | } |
498 | ||
0d129228 N |
499 | static int raid1_congested(void *data, int bits) |
500 | { | |
501 | mddev_t *mddev = data; | |
070ec55d | 502 | conf_t *conf = mddev->private; |
0d129228 N |
503 | int i, ret = 0; |
504 | ||
3fa841d7 N |
505 | if (mddev_congested(mddev, bits)) |
506 | return 1; | |
507 | ||
0d129228 N |
508 | rcu_read_lock(); |
509 | for (i = 0; i < mddev->raid_disks; i++) { | |
510 | mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev); | |
511 | if (rdev && !test_bit(Faulty, &rdev->flags)) { | |
165125e1 | 512 | struct request_queue *q = bdev_get_queue(rdev->bdev); |
0d129228 N |
513 | |
514 | /* Note the '|| 1' - when read_balance prefers | |
515 | * non-congested targets, it can be removed | |
516 | */ | |
91a9e99d | 517 | if ((bits & (1<<BDI_async_congested)) || 1) |
0d129228 N |
518 | ret |= bdi_congested(&q->backing_dev_info, bits); |
519 | else | |
520 | ret &= bdi_congested(&q->backing_dev_info, bits); | |
521 | } | |
522 | } | |
523 | rcu_read_unlock(); | |
524 | return ret; | |
525 | } | |
526 | ||
527 | ||
7eaceacc | 528 | static void flush_pending_writes(conf_t *conf) |
a35e63ef N |
529 | { |
530 | /* Any writes that have been queued but are awaiting | |
531 | * bitmap updates get flushed here. | |
a35e63ef | 532 | */ |
a35e63ef N |
533 | spin_lock_irq(&conf->device_lock); |
534 | ||
535 | if (conf->pending_bio_list.head) { | |
536 | struct bio *bio; | |
537 | bio = bio_list_get(&conf->pending_bio_list); | |
a35e63ef N |
538 | spin_unlock_irq(&conf->device_lock); |
539 | /* flush any pending bitmap writes to | |
540 | * disk before proceeding w/ I/O */ | |
541 | bitmap_unplug(conf->mddev->bitmap); | |
542 | ||
543 | while (bio) { /* submit pending writes */ | |
544 | struct bio *next = bio->bi_next; | |
545 | bio->bi_next = NULL; | |
546 | generic_make_request(bio); | |
547 | bio = next; | |
548 | } | |
a35e63ef N |
549 | } else |
550 | spin_unlock_irq(&conf->device_lock); | |
7eaceacc JA |
551 | } |
552 | ||
17999be4 N |
553 | /* Barriers.... |
554 | * Sometimes we need to suspend IO while we do something else, | |
555 | * either some resync/recovery, or reconfigure the array. | |
556 | * To do this we raise a 'barrier'. | |
557 | * The 'barrier' is a counter that can be raised multiple times | |
558 | * to count how many activities are happening which preclude | |
559 | * normal IO. | |
560 | * We can only raise the barrier if there is no pending IO. | |
561 | * i.e. if nr_pending == 0. | |
562 | * We choose only to raise the barrier if no-one is waiting for the | |
563 | * barrier to go down. This means that as soon as an IO request | |
564 | * is ready, no other operations which require a barrier will start | |
565 | * until the IO request has had a chance. | |
566 | * | |
567 | * So: regular IO calls 'wait_barrier'. When that returns there | |
568 | * is no backgroup IO happening, It must arrange to call | |
569 | * allow_barrier when it has finished its IO. | |
570 | * backgroup IO calls must call raise_barrier. Once that returns | |
571 | * there is no normal IO happeing. It must arrange to call | |
572 | * lower_barrier when the particular background IO completes. | |
1da177e4 LT |
573 | */ |
574 | #define RESYNC_DEPTH 32 | |
575 | ||
17999be4 | 576 | static void raise_barrier(conf_t *conf) |
1da177e4 LT |
577 | { |
578 | spin_lock_irq(&conf->resync_lock); | |
17999be4 N |
579 | |
580 | /* Wait until no block IO is waiting */ | |
581 | wait_event_lock_irq(conf->wait_barrier, !conf->nr_waiting, | |
c3b328ac | 582 | conf->resync_lock, ); |
17999be4 N |
583 | |
584 | /* block any new IO from starting */ | |
585 | conf->barrier++; | |
586 | ||
046abeed | 587 | /* Now wait for all pending IO to complete */ |
17999be4 N |
588 | wait_event_lock_irq(conf->wait_barrier, |
589 | !conf->nr_pending && conf->barrier < RESYNC_DEPTH, | |
c3b328ac | 590 | conf->resync_lock, ); |
17999be4 N |
591 | |
592 | spin_unlock_irq(&conf->resync_lock); | |
593 | } | |
594 | ||
595 | static void lower_barrier(conf_t *conf) | |
596 | { | |
597 | unsigned long flags; | |
709ae487 | 598 | BUG_ON(conf->barrier <= 0); |
17999be4 N |
599 | spin_lock_irqsave(&conf->resync_lock, flags); |
600 | conf->barrier--; | |
601 | spin_unlock_irqrestore(&conf->resync_lock, flags); | |
602 | wake_up(&conf->wait_barrier); | |
603 | } | |
604 | ||
605 | static void wait_barrier(conf_t *conf) | |
606 | { | |
607 | spin_lock_irq(&conf->resync_lock); | |
608 | if (conf->barrier) { | |
609 | conf->nr_waiting++; | |
610 | wait_event_lock_irq(conf->wait_barrier, !conf->barrier, | |
611 | conf->resync_lock, | |
c3b328ac | 612 | ); |
17999be4 | 613 | conf->nr_waiting--; |
1da177e4 | 614 | } |
17999be4 | 615 | conf->nr_pending++; |
1da177e4 LT |
616 | spin_unlock_irq(&conf->resync_lock); |
617 | } | |
618 | ||
17999be4 N |
619 | static void allow_barrier(conf_t *conf) |
620 | { | |
621 | unsigned long flags; | |
622 | spin_lock_irqsave(&conf->resync_lock, flags); | |
623 | conf->nr_pending--; | |
624 | spin_unlock_irqrestore(&conf->resync_lock, flags); | |
625 | wake_up(&conf->wait_barrier); | |
626 | } | |
627 | ||
ddaf22ab N |
628 | static void freeze_array(conf_t *conf) |
629 | { | |
630 | /* stop syncio and normal IO and wait for everything to | |
631 | * go quite. | |
632 | * We increment barrier and nr_waiting, and then | |
1c830532 N |
633 | * wait until nr_pending match nr_queued+1 |
634 | * This is called in the context of one normal IO request | |
635 | * that has failed. Thus any sync request that might be pending | |
636 | * will be blocked by nr_pending, and we need to wait for | |
637 | * pending IO requests to complete or be queued for re-try. | |
638 | * Thus the number queued (nr_queued) plus this request (1) | |
639 | * must match the number of pending IOs (nr_pending) before | |
640 | * we continue. | |
ddaf22ab N |
641 | */ |
642 | spin_lock_irq(&conf->resync_lock); | |
643 | conf->barrier++; | |
644 | conf->nr_waiting++; | |
645 | wait_event_lock_irq(conf->wait_barrier, | |
1c830532 | 646 | conf->nr_pending == conf->nr_queued+1, |
ddaf22ab | 647 | conf->resync_lock, |
c3b328ac | 648 | flush_pending_writes(conf)); |
ddaf22ab N |
649 | spin_unlock_irq(&conf->resync_lock); |
650 | } | |
651 | static void unfreeze_array(conf_t *conf) | |
652 | { | |
653 | /* reverse the effect of the freeze */ | |
654 | spin_lock_irq(&conf->resync_lock); | |
655 | conf->barrier--; | |
656 | conf->nr_waiting--; | |
657 | wake_up(&conf->wait_barrier); | |
658 | spin_unlock_irq(&conf->resync_lock); | |
659 | } | |
660 | ||
17999be4 | 661 | |
4e78064f N |
662 | /* duplicate the data pages for behind I/O |
663 | * We return a list of bio_vec rather than just page pointers | |
664 | * as it makes freeing easier | |
665 | */ | |
666 | static struct bio_vec *alloc_behind_pages(struct bio *bio) | |
4b6d287f N |
667 | { |
668 | int i; | |
669 | struct bio_vec *bvec; | |
4e78064f | 670 | struct bio_vec *pages = kzalloc(bio->bi_vcnt * sizeof(struct bio_vec), |
4b6d287f N |
671 | GFP_NOIO); |
672 | if (unlikely(!pages)) | |
673 | goto do_sync_io; | |
674 | ||
4b6d287f | 675 | bio_for_each_segment(bvec, bio, i) { |
4e78064f N |
676 | pages[i].bv_page = alloc_page(GFP_NOIO); |
677 | if (unlikely(!pages[i].bv_page)) | |
4b6d287f | 678 | goto do_sync_io; |
4e78064f | 679 | memcpy(kmap(pages[i].bv_page) + bvec->bv_offset, |
4b6d287f | 680 | kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len); |
4e78064f | 681 | kunmap(pages[i].bv_page); |
4b6d287f N |
682 | kunmap(bvec->bv_page); |
683 | } | |
684 | ||
685 | return pages; | |
686 | ||
687 | do_sync_io: | |
688 | if (pages) | |
4e78064f N |
689 | for (i = 0; i < bio->bi_vcnt && pages[i].bv_page; i++) |
690 | put_page(pages[i].bv_page); | |
4b6d287f N |
691 | kfree(pages); |
692 | PRINTK("%dB behind alloc failed, doing sync I/O\n", bio->bi_size); | |
693 | return NULL; | |
694 | } | |
695 | ||
21a52c6d | 696 | static int make_request(mddev_t *mddev, struct bio * bio) |
1da177e4 | 697 | { |
070ec55d | 698 | conf_t *conf = mddev->private; |
1da177e4 LT |
699 | mirror_info_t *mirror; |
700 | r1bio_t *r1_bio; | |
701 | struct bio *read_bio; | |
191ea9b2 | 702 | int i, targets = 0, disks; |
84255d10 | 703 | struct bitmap *bitmap; |
191ea9b2 | 704 | unsigned long flags; |
4e78064f | 705 | struct bio_vec *behind_pages = NULL; |
a362357b | 706 | const int rw = bio_data_dir(bio); |
2c7d46ec | 707 | const unsigned long do_sync = (bio->bi_rw & REQ_SYNC); |
e9c7469b | 708 | const unsigned long do_flush_fua = (bio->bi_rw & (REQ_FLUSH | REQ_FUA)); |
6bfe0b49 | 709 | mdk_rdev_t *blocked_rdev; |
c3b328ac | 710 | int plugged; |
191ea9b2 | 711 | |
1da177e4 LT |
712 | /* |
713 | * Register the new request and wait if the reconstruction | |
714 | * thread has put up a bar for new requests. | |
715 | * Continue immediately if no resync is active currently. | |
716 | */ | |
62de608d | 717 | |
3d310eb7 N |
718 | md_write_start(mddev, bio); /* wait on superblock update early */ |
719 | ||
6eef4b21 N |
720 | if (bio_data_dir(bio) == WRITE && |
721 | bio->bi_sector + bio->bi_size/512 > mddev->suspend_lo && | |
722 | bio->bi_sector < mddev->suspend_hi) { | |
723 | /* As the suspend_* range is controlled by | |
724 | * userspace, we want an interruptible | |
725 | * wait. | |
726 | */ | |
727 | DEFINE_WAIT(w); | |
728 | for (;;) { | |
729 | flush_signals(current); | |
730 | prepare_to_wait(&conf->wait_barrier, | |
731 | &w, TASK_INTERRUPTIBLE); | |
732 | if (bio->bi_sector + bio->bi_size/512 <= mddev->suspend_lo || | |
733 | bio->bi_sector >= mddev->suspend_hi) | |
734 | break; | |
735 | schedule(); | |
736 | } | |
737 | finish_wait(&conf->wait_barrier, &w); | |
738 | } | |
62de608d | 739 | |
17999be4 | 740 | wait_barrier(conf); |
1da177e4 | 741 | |
84255d10 N |
742 | bitmap = mddev->bitmap; |
743 | ||
1da177e4 LT |
744 | /* |
745 | * make_request() can abort the operation when READA is being | |
746 | * used and no empty request is available. | |
747 | * | |
748 | */ | |
749 | r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO); | |
750 | ||
751 | r1_bio->master_bio = bio; | |
752 | r1_bio->sectors = bio->bi_size >> 9; | |
191ea9b2 | 753 | r1_bio->state = 0; |
1da177e4 LT |
754 | r1_bio->mddev = mddev; |
755 | r1_bio->sector = bio->bi_sector; | |
756 | ||
a362357b | 757 | if (rw == READ) { |
1da177e4 LT |
758 | /* |
759 | * read balancing logic: | |
760 | */ | |
761 | int rdisk = read_balance(conf, r1_bio); | |
762 | ||
763 | if (rdisk < 0) { | |
764 | /* couldn't find anywhere to read from */ | |
765 | raid_end_bio_io(r1_bio); | |
766 | return 0; | |
767 | } | |
768 | mirror = conf->mirrors + rdisk; | |
769 | ||
e555190d N |
770 | if (test_bit(WriteMostly, &mirror->rdev->flags) && |
771 | bitmap) { | |
772 | /* Reading from a write-mostly device must | |
773 | * take care not to over-take any writes | |
774 | * that are 'behind' | |
775 | */ | |
776 | wait_event(bitmap->behind_wait, | |
777 | atomic_read(&bitmap->behind_writes) == 0); | |
778 | } | |
1da177e4 LT |
779 | r1_bio->read_disk = rdisk; |
780 | ||
a167f663 | 781 | read_bio = bio_clone_mddev(bio, GFP_NOIO, mddev); |
1da177e4 LT |
782 | |
783 | r1_bio->bios[rdisk] = read_bio; | |
784 | ||
785 | read_bio->bi_sector = r1_bio->sector + mirror->rdev->data_offset; | |
786 | read_bio->bi_bdev = mirror->rdev->bdev; | |
787 | read_bio->bi_end_io = raid1_end_read_request; | |
7b6d91da | 788 | read_bio->bi_rw = READ | do_sync; |
1da177e4 LT |
789 | read_bio->bi_private = r1_bio; |
790 | ||
791 | generic_make_request(read_bio); | |
792 | return 0; | |
793 | } | |
794 | ||
795 | /* | |
796 | * WRITE: | |
797 | */ | |
798 | /* first select target devices under spinlock and | |
799 | * inc refcount on their rdev. Record them by setting | |
800 | * bios[x] to bio | |
801 | */ | |
c3b328ac N |
802 | plugged = mddev_check_plugged(mddev); |
803 | ||
1da177e4 | 804 | disks = conf->raid_disks; |
6bfe0b49 DW |
805 | retry_write: |
806 | blocked_rdev = NULL; | |
1da177e4 LT |
807 | rcu_read_lock(); |
808 | for (i = 0; i < disks; i++) { | |
6bfe0b49 DW |
809 | mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev); |
810 | if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) { | |
811 | atomic_inc(&rdev->nr_pending); | |
812 | blocked_rdev = rdev; | |
813 | break; | |
814 | } | |
815 | if (rdev && !test_bit(Faulty, &rdev->flags)) { | |
1da177e4 | 816 | atomic_inc(&rdev->nr_pending); |
b2d444d7 | 817 | if (test_bit(Faulty, &rdev->flags)) { |
03c902e1 | 818 | rdev_dec_pending(rdev, mddev); |
1da177e4 | 819 | r1_bio->bios[i] = NULL; |
964147d5 | 820 | } else { |
1da177e4 | 821 | r1_bio->bios[i] = bio; |
964147d5 N |
822 | targets++; |
823 | } | |
1da177e4 LT |
824 | } else |
825 | r1_bio->bios[i] = NULL; | |
826 | } | |
827 | rcu_read_unlock(); | |
828 | ||
6bfe0b49 DW |
829 | if (unlikely(blocked_rdev)) { |
830 | /* Wait for this device to become unblocked */ | |
831 | int j; | |
832 | ||
833 | for (j = 0; j < i; j++) | |
834 | if (r1_bio->bios[j]) | |
835 | rdev_dec_pending(conf->mirrors[j].rdev, mddev); | |
836 | ||
837 | allow_barrier(conf); | |
838 | md_wait_for_blocked_rdev(blocked_rdev, mddev); | |
839 | wait_barrier(conf); | |
840 | goto retry_write; | |
841 | } | |
842 | ||
4b6d287f N |
843 | BUG_ON(targets == 0); /* we never fail the last device */ |
844 | ||
191ea9b2 N |
845 | if (targets < conf->raid_disks) { |
846 | /* array is degraded, we will not clear the bitmap | |
847 | * on I/O completion (see raid1_end_write_request) */ | |
848 | set_bit(R1BIO_Degraded, &r1_bio->state); | |
849 | } | |
850 | ||
e555190d N |
851 | /* do behind I/O ? |
852 | * Not if there are too many, or cannot allocate memory, | |
853 | * or a reader on WriteMostly is waiting for behind writes | |
854 | * to flush */ | |
4b6d287f | 855 | if (bitmap && |
42a04b50 N |
856 | (atomic_read(&bitmap->behind_writes) |
857 | < mddev->bitmap_info.max_write_behind) && | |
e555190d | 858 | !waitqueue_active(&bitmap->behind_wait) && |
4b6d287f N |
859 | (behind_pages = alloc_behind_pages(bio)) != NULL) |
860 | set_bit(R1BIO_BehindIO, &r1_bio->state); | |
861 | ||
4e78064f | 862 | atomic_set(&r1_bio->remaining, 1); |
4b6d287f | 863 | atomic_set(&r1_bio->behind_remaining, 0); |
06d91a5f | 864 | |
4e78064f N |
865 | bitmap_startwrite(bitmap, bio->bi_sector, r1_bio->sectors, |
866 | test_bit(R1BIO_BehindIO, &r1_bio->state)); | |
1da177e4 LT |
867 | for (i = 0; i < disks; i++) { |
868 | struct bio *mbio; | |
869 | if (!r1_bio->bios[i]) | |
870 | continue; | |
871 | ||
a167f663 | 872 | mbio = bio_clone_mddev(bio, GFP_NOIO, mddev); |
1da177e4 LT |
873 | r1_bio->bios[i] = mbio; |
874 | ||
875 | mbio->bi_sector = r1_bio->sector + conf->mirrors[i].rdev->data_offset; | |
876 | mbio->bi_bdev = conf->mirrors[i].rdev->bdev; | |
877 | mbio->bi_end_io = raid1_end_write_request; | |
e9c7469b | 878 | mbio->bi_rw = WRITE | do_flush_fua | do_sync; |
1da177e4 LT |
879 | mbio->bi_private = r1_bio; |
880 | ||
4b6d287f N |
881 | if (behind_pages) { |
882 | struct bio_vec *bvec; | |
883 | int j; | |
884 | ||
885 | /* Yes, I really want the '__' version so that | |
886 | * we clear any unused pointer in the io_vec, rather | |
887 | * than leave them unchanged. This is important | |
888 | * because when we come to free the pages, we won't | |
046abeed | 889 | * know the original bi_idx, so we just free |
4b6d287f N |
890 | * them all |
891 | */ | |
892 | __bio_for_each_segment(bvec, mbio, j, 0) | |
4e78064f | 893 | bvec->bv_page = behind_pages[j].bv_page; |
4b6d287f N |
894 | if (test_bit(WriteMostly, &conf->mirrors[i].rdev->flags)) |
895 | atomic_inc(&r1_bio->behind_remaining); | |
896 | } | |
897 | ||
1da177e4 | 898 | atomic_inc(&r1_bio->remaining); |
4e78064f N |
899 | spin_lock_irqsave(&conf->device_lock, flags); |
900 | bio_list_add(&conf->pending_bio_list, mbio); | |
4e78064f | 901 | spin_unlock_irqrestore(&conf->device_lock, flags); |
1da177e4 | 902 | } |
4e78064f | 903 | r1_bio_write_done(r1_bio, bio->bi_vcnt, behind_pages, behind_pages != NULL); |
4b6d287f | 904 | kfree(behind_pages); /* the behind pages are attached to the bios now */ |
1da177e4 | 905 | |
4e78064f | 906 | /* In case raid1d snuck in to freeze_array */ |
a35e63ef N |
907 | wake_up(&conf->wait_barrier); |
908 | ||
c3b328ac | 909 | if (do_sync || !bitmap || !plugged) |
e3881a68 | 910 | md_wakeup_thread(mddev->thread); |
191ea9b2 | 911 | |
1da177e4 LT |
912 | return 0; |
913 | } | |
914 | ||
915 | static void status(struct seq_file *seq, mddev_t *mddev) | |
916 | { | |
070ec55d | 917 | conf_t *conf = mddev->private; |
1da177e4 LT |
918 | int i; |
919 | ||
920 | seq_printf(seq, " [%d/%d] [", conf->raid_disks, | |
11ce99e6 | 921 | conf->raid_disks - mddev->degraded); |
ddac7c7e N |
922 | rcu_read_lock(); |
923 | for (i = 0; i < conf->raid_disks; i++) { | |
924 | mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev); | |
1da177e4 | 925 | seq_printf(seq, "%s", |
ddac7c7e N |
926 | rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_"); |
927 | } | |
928 | rcu_read_unlock(); | |
1da177e4 LT |
929 | seq_printf(seq, "]"); |
930 | } | |
931 | ||
932 | ||
933 | static void error(mddev_t *mddev, mdk_rdev_t *rdev) | |
934 | { | |
935 | char b[BDEVNAME_SIZE]; | |
070ec55d | 936 | conf_t *conf = mddev->private; |
1da177e4 LT |
937 | |
938 | /* | |
939 | * If it is not operational, then we have already marked it as dead | |
940 | * else if it is the last working disks, ignore the error, let the | |
941 | * next level up know. | |
942 | * else mark the drive as failed | |
943 | */ | |
b2d444d7 | 944 | if (test_bit(In_sync, &rdev->flags) |
4044ba58 | 945 | && (conf->raid_disks - mddev->degraded) == 1) { |
1da177e4 LT |
946 | /* |
947 | * Don't fail the drive, act as though we were just a | |
4044ba58 N |
948 | * normal single drive. |
949 | * However don't try a recovery from this drive as | |
950 | * it is very likely to fail. | |
1da177e4 | 951 | */ |
4044ba58 | 952 | mddev->recovery_disabled = 1; |
1da177e4 | 953 | return; |
4044ba58 | 954 | } |
c04be0aa N |
955 | if (test_and_clear_bit(In_sync, &rdev->flags)) { |
956 | unsigned long flags; | |
957 | spin_lock_irqsave(&conf->device_lock, flags); | |
1da177e4 | 958 | mddev->degraded++; |
dd00a99e | 959 | set_bit(Faulty, &rdev->flags); |
c04be0aa | 960 | spin_unlock_irqrestore(&conf->device_lock, flags); |
1da177e4 LT |
961 | /* |
962 | * if recovery is running, make sure it aborts. | |
963 | */ | |
dfc70645 | 964 | set_bit(MD_RECOVERY_INTR, &mddev->recovery); |
dd00a99e N |
965 | } else |
966 | set_bit(Faulty, &rdev->flags); | |
850b2b42 | 967 | set_bit(MD_CHANGE_DEVS, &mddev->flags); |
067032bc JP |
968 | printk(KERN_ALERT |
969 | "md/raid1:%s: Disk failure on %s, disabling device.\n" | |
970 | "md/raid1:%s: Operation continuing on %d devices.\n", | |
9dd1e2fa N |
971 | mdname(mddev), bdevname(rdev->bdev, b), |
972 | mdname(mddev), conf->raid_disks - mddev->degraded); | |
1da177e4 LT |
973 | } |
974 | ||
975 | static void print_conf(conf_t *conf) | |
976 | { | |
977 | int i; | |
1da177e4 | 978 | |
9dd1e2fa | 979 | printk(KERN_DEBUG "RAID1 conf printout:\n"); |
1da177e4 | 980 | if (!conf) { |
9dd1e2fa | 981 | printk(KERN_DEBUG "(!conf)\n"); |
1da177e4 LT |
982 | return; |
983 | } | |
9dd1e2fa | 984 | printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded, |
1da177e4 LT |
985 | conf->raid_disks); |
986 | ||
ddac7c7e | 987 | rcu_read_lock(); |
1da177e4 LT |
988 | for (i = 0; i < conf->raid_disks; i++) { |
989 | char b[BDEVNAME_SIZE]; | |
ddac7c7e N |
990 | mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev); |
991 | if (rdev) | |
9dd1e2fa | 992 | printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n", |
ddac7c7e N |
993 | i, !test_bit(In_sync, &rdev->flags), |
994 | !test_bit(Faulty, &rdev->flags), | |
995 | bdevname(rdev->bdev,b)); | |
1da177e4 | 996 | } |
ddac7c7e | 997 | rcu_read_unlock(); |
1da177e4 LT |
998 | } |
999 | ||
1000 | static void close_sync(conf_t *conf) | |
1001 | { | |
17999be4 N |
1002 | wait_barrier(conf); |
1003 | allow_barrier(conf); | |
1da177e4 LT |
1004 | |
1005 | mempool_destroy(conf->r1buf_pool); | |
1006 | conf->r1buf_pool = NULL; | |
1007 | } | |
1008 | ||
1009 | static int raid1_spare_active(mddev_t *mddev) | |
1010 | { | |
1011 | int i; | |
1012 | conf_t *conf = mddev->private; | |
6b965620 N |
1013 | int count = 0; |
1014 | unsigned long flags; | |
1da177e4 LT |
1015 | |
1016 | /* | |
1017 | * Find all failed disks within the RAID1 configuration | |
ddac7c7e N |
1018 | * and mark them readable. |
1019 | * Called under mddev lock, so rcu protection not needed. | |
1da177e4 LT |
1020 | */ |
1021 | for (i = 0; i < conf->raid_disks; i++) { | |
ddac7c7e N |
1022 | mdk_rdev_t *rdev = conf->mirrors[i].rdev; |
1023 | if (rdev | |
1024 | && !test_bit(Faulty, &rdev->flags) | |
c04be0aa | 1025 | && !test_and_set_bit(In_sync, &rdev->flags)) { |
6b965620 | 1026 | count++; |
e6ffbcb6 | 1027 | sysfs_notify_dirent(rdev->sysfs_state); |
1da177e4 LT |
1028 | } |
1029 | } | |
6b965620 N |
1030 | spin_lock_irqsave(&conf->device_lock, flags); |
1031 | mddev->degraded -= count; | |
1032 | spin_unlock_irqrestore(&conf->device_lock, flags); | |
1da177e4 LT |
1033 | |
1034 | print_conf(conf); | |
6b965620 | 1035 | return count; |
1da177e4 LT |
1036 | } |
1037 | ||
1038 | ||
1039 | static int raid1_add_disk(mddev_t *mddev, mdk_rdev_t *rdev) | |
1040 | { | |
1041 | conf_t *conf = mddev->private; | |
199050ea | 1042 | int err = -EEXIST; |
41158c7e | 1043 | int mirror = 0; |
1da177e4 | 1044 | mirror_info_t *p; |
6c2fce2e NB |
1045 | int first = 0; |
1046 | int last = mddev->raid_disks - 1; | |
1da177e4 | 1047 | |
6c2fce2e NB |
1048 | if (rdev->raid_disk >= 0) |
1049 | first = last = rdev->raid_disk; | |
1050 | ||
1051 | for (mirror = first; mirror <= last; mirror++) | |
1da177e4 LT |
1052 | if ( !(p=conf->mirrors+mirror)->rdev) { |
1053 | ||
8f6c2e4b MP |
1054 | disk_stack_limits(mddev->gendisk, rdev->bdev, |
1055 | rdev->data_offset << 9); | |
627a2d3c N |
1056 | /* as we don't honour merge_bvec_fn, we must |
1057 | * never risk violating it, so limit | |
1058 | * ->max_segments to one lying with a single | |
1059 | * page, as a one page request is never in | |
1060 | * violation. | |
1da177e4 | 1061 | */ |
627a2d3c N |
1062 | if (rdev->bdev->bd_disk->queue->merge_bvec_fn) { |
1063 | blk_queue_max_segments(mddev->queue, 1); | |
1064 | blk_queue_segment_boundary(mddev->queue, | |
1065 | PAGE_CACHE_SIZE - 1); | |
1066 | } | |
1da177e4 LT |
1067 | |
1068 | p->head_position = 0; | |
1069 | rdev->raid_disk = mirror; | |
199050ea | 1070 | err = 0; |
6aea114a N |
1071 | /* As all devices are equivalent, we don't need a full recovery |
1072 | * if this was recently any drive of the array | |
1073 | */ | |
1074 | if (rdev->saved_raid_disk < 0) | |
41158c7e | 1075 | conf->fullsync = 1; |
d6065f7b | 1076 | rcu_assign_pointer(p->rdev, rdev); |
1da177e4 LT |
1077 | break; |
1078 | } | |
ac5e7113 | 1079 | md_integrity_add_rdev(rdev, mddev); |
1da177e4 | 1080 | print_conf(conf); |
199050ea | 1081 | return err; |
1da177e4 LT |
1082 | } |
1083 | ||
1084 | static int raid1_remove_disk(mddev_t *mddev, int number) | |
1085 | { | |
1086 | conf_t *conf = mddev->private; | |
1087 | int err = 0; | |
1088 | mdk_rdev_t *rdev; | |
1089 | mirror_info_t *p = conf->mirrors+ number; | |
1090 | ||
1091 | print_conf(conf); | |
1092 | rdev = p->rdev; | |
1093 | if (rdev) { | |
b2d444d7 | 1094 | if (test_bit(In_sync, &rdev->flags) || |
1da177e4 LT |
1095 | atomic_read(&rdev->nr_pending)) { |
1096 | err = -EBUSY; | |
1097 | goto abort; | |
1098 | } | |
046abeed | 1099 | /* Only remove non-faulty devices if recovery |
dfc70645 N |
1100 | * is not possible. |
1101 | */ | |
1102 | if (!test_bit(Faulty, &rdev->flags) && | |
8f9e0ee3 | 1103 | !mddev->recovery_disabled && |
dfc70645 N |
1104 | mddev->degraded < conf->raid_disks) { |
1105 | err = -EBUSY; | |
1106 | goto abort; | |
1107 | } | |
1da177e4 | 1108 | p->rdev = NULL; |
fbd568a3 | 1109 | synchronize_rcu(); |
1da177e4 LT |
1110 | if (atomic_read(&rdev->nr_pending)) { |
1111 | /* lost the race, try later */ | |
1112 | err = -EBUSY; | |
1113 | p->rdev = rdev; | |
ac5e7113 | 1114 | goto abort; |
1da177e4 | 1115 | } |
a91a2785 | 1116 | err = md_integrity_register(mddev); |
1da177e4 LT |
1117 | } |
1118 | abort: | |
1119 | ||
1120 | print_conf(conf); | |
1121 | return err; | |
1122 | } | |
1123 | ||
1124 | ||
6712ecf8 | 1125 | static void end_sync_read(struct bio *bio, int error) |
1da177e4 | 1126 | { |
7b92813c | 1127 | r1bio_t *r1_bio = bio->bi_private; |
d11c171e | 1128 | int i; |
1da177e4 | 1129 | |
d11c171e N |
1130 | for (i=r1_bio->mddev->raid_disks; i--; ) |
1131 | if (r1_bio->bios[i] == bio) | |
1132 | break; | |
1133 | BUG_ON(i < 0); | |
1134 | update_head_pos(i, r1_bio); | |
1da177e4 LT |
1135 | /* |
1136 | * we have read a block, now it needs to be re-written, | |
1137 | * or re-read if the read failed. | |
1138 | * We don't do much here, just schedule handling by raid1d | |
1139 | */ | |
69382e85 | 1140 | if (test_bit(BIO_UPTODATE, &bio->bi_flags)) |
1da177e4 | 1141 | set_bit(R1BIO_Uptodate, &r1_bio->state); |
d11c171e N |
1142 | |
1143 | if (atomic_dec_and_test(&r1_bio->remaining)) | |
1144 | reschedule_retry(r1_bio); | |
1da177e4 LT |
1145 | } |
1146 | ||
6712ecf8 | 1147 | static void end_sync_write(struct bio *bio, int error) |
1da177e4 LT |
1148 | { |
1149 | int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); | |
7b92813c | 1150 | r1bio_t *r1_bio = bio->bi_private; |
1da177e4 | 1151 | mddev_t *mddev = r1_bio->mddev; |
070ec55d | 1152 | conf_t *conf = mddev->private; |
1da177e4 LT |
1153 | int i; |
1154 | int mirror=0; | |
1155 | ||
1da177e4 LT |
1156 | for (i = 0; i < conf->raid_disks; i++) |
1157 | if (r1_bio->bios[i] == bio) { | |
1158 | mirror = i; | |
1159 | break; | |
1160 | } | |
6b1117d5 | 1161 | if (!uptodate) { |
57dab0bd | 1162 | sector_t sync_blocks = 0; |
6b1117d5 N |
1163 | sector_t s = r1_bio->sector; |
1164 | long sectors_to_go = r1_bio->sectors; | |
1165 | /* make sure these bits doesn't get cleared. */ | |
1166 | do { | |
5e3db645 | 1167 | bitmap_end_sync(mddev->bitmap, s, |
6b1117d5 N |
1168 | &sync_blocks, 1); |
1169 | s += sync_blocks; | |
1170 | sectors_to_go -= sync_blocks; | |
1171 | } while (sectors_to_go > 0); | |
1da177e4 | 1172 | md_error(mddev, conf->mirrors[mirror].rdev); |
6b1117d5 | 1173 | } |
e3b9703e | 1174 | |
1da177e4 LT |
1175 | update_head_pos(mirror, r1_bio); |
1176 | ||
1177 | if (atomic_dec_and_test(&r1_bio->remaining)) { | |
73d5c38a | 1178 | sector_t s = r1_bio->sectors; |
1da177e4 | 1179 | put_buf(r1_bio); |
73d5c38a | 1180 | md_done_sync(mddev, s, uptodate); |
1da177e4 | 1181 | } |
1da177e4 LT |
1182 | } |
1183 | ||
1184 | static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio) | |
1185 | { | |
070ec55d | 1186 | conf_t *conf = mddev->private; |
1da177e4 LT |
1187 | int i; |
1188 | int disks = conf->raid_disks; | |
1189 | struct bio *bio, *wbio; | |
1190 | ||
1191 | bio = r1_bio->bios[r1_bio->read_disk]; | |
1192 | ||
69382e85 | 1193 | |
d11c171e N |
1194 | if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) { |
1195 | /* We have read all readable devices. If we haven't | |
1196 | * got the block, then there is no hope left. | |
1197 | * If we have, then we want to do a comparison | |
1198 | * and skip the write if everything is the same. | |
1199 | * If any blocks failed to read, then we need to | |
1200 | * attempt an over-write | |
1201 | */ | |
1202 | int primary; | |
1203 | if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) { | |
1204 | for (i=0; i<mddev->raid_disks; i++) | |
1205 | if (r1_bio->bios[i]->bi_end_io == end_sync_read) | |
1206 | md_error(mddev, conf->mirrors[i].rdev); | |
1207 | ||
1208 | md_done_sync(mddev, r1_bio->sectors, 1); | |
1209 | put_buf(r1_bio); | |
1210 | return; | |
1211 | } | |
1212 | for (primary=0; primary<mddev->raid_disks; primary++) | |
1213 | if (r1_bio->bios[primary]->bi_end_io == end_sync_read && | |
1214 | test_bit(BIO_UPTODATE, &r1_bio->bios[primary]->bi_flags)) { | |
1215 | r1_bio->bios[primary]->bi_end_io = NULL; | |
03c902e1 | 1216 | rdev_dec_pending(conf->mirrors[primary].rdev, mddev); |
d11c171e N |
1217 | break; |
1218 | } | |
1219 | r1_bio->read_disk = primary; | |
1220 | for (i=0; i<mddev->raid_disks; i++) | |
ed456662 | 1221 | if (r1_bio->bios[i]->bi_end_io == end_sync_read) { |
d11c171e N |
1222 | int j; |
1223 | int vcnt = r1_bio->sectors >> (PAGE_SHIFT- 9); | |
1224 | struct bio *pbio = r1_bio->bios[primary]; | |
1225 | struct bio *sbio = r1_bio->bios[i]; | |
ed456662 MA |
1226 | |
1227 | if (test_bit(BIO_UPTODATE, &sbio->bi_flags)) { | |
1228 | for (j = vcnt; j-- ; ) { | |
1229 | struct page *p, *s; | |
1230 | p = pbio->bi_io_vec[j].bv_page; | |
1231 | s = sbio->bi_io_vec[j].bv_page; | |
1232 | if (memcmp(page_address(p), | |
1233 | page_address(s), | |
1234 | PAGE_SIZE)) | |
1235 | break; | |
1236 | } | |
1237 | } else | |
1238 | j = 0; | |
d11c171e N |
1239 | if (j >= 0) |
1240 | mddev->resync_mismatches += r1_bio->sectors; | |
cf7a4416 N |
1241 | if (j < 0 || (test_bit(MD_RECOVERY_CHECK, &mddev->recovery) |
1242 | && test_bit(BIO_UPTODATE, &sbio->bi_flags))) { | |
d11c171e | 1243 | sbio->bi_end_io = NULL; |
03c902e1 N |
1244 | rdev_dec_pending(conf->mirrors[i].rdev, mddev); |
1245 | } else { | |
d11c171e | 1246 | /* fixup the bio for reuse */ |
698b18c1 | 1247 | int size; |
d11c171e N |
1248 | sbio->bi_vcnt = vcnt; |
1249 | sbio->bi_size = r1_bio->sectors << 9; | |
1250 | sbio->bi_idx = 0; | |
1251 | sbio->bi_phys_segments = 0; | |
d11c171e N |
1252 | sbio->bi_flags &= ~(BIO_POOL_MASK - 1); |
1253 | sbio->bi_flags |= 1 << BIO_UPTODATE; | |
1254 | sbio->bi_next = NULL; | |
1255 | sbio->bi_sector = r1_bio->sector + | |
1256 | conf->mirrors[i].rdev->data_offset; | |
1257 | sbio->bi_bdev = conf->mirrors[i].rdev->bdev; | |
698b18c1 N |
1258 | size = sbio->bi_size; |
1259 | for (j = 0; j < vcnt ; j++) { | |
1260 | struct bio_vec *bi; | |
1261 | bi = &sbio->bi_io_vec[j]; | |
1262 | bi->bv_offset = 0; | |
1263 | if (size > PAGE_SIZE) | |
1264 | bi->bv_len = PAGE_SIZE; | |
1265 | else | |
1266 | bi->bv_len = size; | |
1267 | size -= PAGE_SIZE; | |
1268 | memcpy(page_address(bi->bv_page), | |
3eda22d1 N |
1269 | page_address(pbio->bi_io_vec[j].bv_page), |
1270 | PAGE_SIZE); | |
698b18c1 | 1271 | } |
3eda22d1 | 1272 | |
d11c171e N |
1273 | } |
1274 | } | |
1275 | } | |
1da177e4 | 1276 | if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) { |
69382e85 N |
1277 | /* ouch - failed to read all of that. |
1278 | * Try some synchronous reads of other devices to get | |
1279 | * good data, much like with normal read errors. Only | |
ddac7c7e | 1280 | * read into the pages we already have so we don't |
69382e85 N |
1281 | * need to re-issue the read request. |
1282 | * We don't need to freeze the array, because being in an | |
1283 | * active sync request, there is no normal IO, and | |
1284 | * no overlapping syncs. | |
1da177e4 | 1285 | */ |
69382e85 N |
1286 | sector_t sect = r1_bio->sector; |
1287 | int sectors = r1_bio->sectors; | |
1288 | int idx = 0; | |
1289 | ||
1290 | while(sectors) { | |
1291 | int s = sectors; | |
1292 | int d = r1_bio->read_disk; | |
1293 | int success = 0; | |
1294 | mdk_rdev_t *rdev; | |
1295 | ||
1296 | if (s > (PAGE_SIZE>>9)) | |
1297 | s = PAGE_SIZE >> 9; | |
1298 | do { | |
1299 | if (r1_bio->bios[d]->bi_end_io == end_sync_read) { | |
ddac7c7e N |
1300 | /* No rcu protection needed here devices |
1301 | * can only be removed when no resync is | |
1302 | * active, and resync is currently active | |
1303 | */ | |
69382e85 | 1304 | rdev = conf->mirrors[d].rdev; |
2b193363 | 1305 | if (sync_page_io(rdev, |
ccebd4c4 | 1306 | sect, |
69382e85 N |
1307 | s<<9, |
1308 | bio->bi_io_vec[idx].bv_page, | |
ccebd4c4 | 1309 | READ, false)) { |
69382e85 N |
1310 | success = 1; |
1311 | break; | |
1312 | } | |
1313 | } | |
1314 | d++; | |
1315 | if (d == conf->raid_disks) | |
1316 | d = 0; | |
1317 | } while (!success && d != r1_bio->read_disk); | |
1318 | ||
1319 | if (success) { | |
097426f6 | 1320 | int start = d; |
69382e85 N |
1321 | /* write it back and re-read */ |
1322 | set_bit(R1BIO_Uptodate, &r1_bio->state); | |
1323 | while (d != r1_bio->read_disk) { | |
1324 | if (d == 0) | |
1325 | d = conf->raid_disks; | |
1326 | d--; | |
1327 | if (r1_bio->bios[d]->bi_end_io != end_sync_read) | |
1328 | continue; | |
1329 | rdev = conf->mirrors[d].rdev; | |
4dbcdc75 | 1330 | atomic_add(s, &rdev->corrected_errors); |
2b193363 | 1331 | if (sync_page_io(rdev, |
ccebd4c4 | 1332 | sect, |
69382e85 N |
1333 | s<<9, |
1334 | bio->bi_io_vec[idx].bv_page, | |
ccebd4c4 | 1335 | WRITE, false) == 0) |
097426f6 N |
1336 | md_error(mddev, rdev); |
1337 | } | |
1338 | d = start; | |
1339 | while (d != r1_bio->read_disk) { | |
1340 | if (d == 0) | |
1341 | d = conf->raid_disks; | |
1342 | d--; | |
1343 | if (r1_bio->bios[d]->bi_end_io != end_sync_read) | |
1344 | continue; | |
1345 | rdev = conf->mirrors[d].rdev; | |
2b193363 | 1346 | if (sync_page_io(rdev, |
ccebd4c4 | 1347 | sect, |
69382e85 N |
1348 | s<<9, |
1349 | bio->bi_io_vec[idx].bv_page, | |
ccebd4c4 | 1350 | READ, false) == 0) |
69382e85 | 1351 | md_error(mddev, rdev); |
69382e85 N |
1352 | } |
1353 | } else { | |
1354 | char b[BDEVNAME_SIZE]; | |
1355 | /* Cannot read from anywhere, array is toast */ | |
1356 | md_error(mddev, conf->mirrors[r1_bio->read_disk].rdev); | |
9dd1e2fa | 1357 | printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O read error" |
69382e85 | 1358 | " for block %llu\n", |
9dd1e2fa N |
1359 | mdname(mddev), |
1360 | bdevname(bio->bi_bdev, b), | |
69382e85 N |
1361 | (unsigned long long)r1_bio->sector); |
1362 | md_done_sync(mddev, r1_bio->sectors, 0); | |
1363 | put_buf(r1_bio); | |
1364 | return; | |
1365 | } | |
1366 | sectors -= s; | |
1367 | sect += s; | |
1368 | idx ++; | |
1369 | } | |
1da177e4 | 1370 | } |
d11c171e N |
1371 | |
1372 | /* | |
1373 | * schedule writes | |
1374 | */ | |
1da177e4 LT |
1375 | atomic_set(&r1_bio->remaining, 1); |
1376 | for (i = 0; i < disks ; i++) { | |
1377 | wbio = r1_bio->bios[i]; | |
3e198f78 N |
1378 | if (wbio->bi_end_io == NULL || |
1379 | (wbio->bi_end_io == end_sync_read && | |
1380 | (i == r1_bio->read_disk || | |
1381 | !test_bit(MD_RECOVERY_SYNC, &mddev->recovery)))) | |
1da177e4 LT |
1382 | continue; |
1383 | ||
3e198f78 N |
1384 | wbio->bi_rw = WRITE; |
1385 | wbio->bi_end_io = end_sync_write; | |
1da177e4 LT |
1386 | atomic_inc(&r1_bio->remaining); |
1387 | md_sync_acct(conf->mirrors[i].rdev->bdev, wbio->bi_size >> 9); | |
191ea9b2 | 1388 | |
1da177e4 LT |
1389 | generic_make_request(wbio); |
1390 | } | |
1391 | ||
1392 | if (atomic_dec_and_test(&r1_bio->remaining)) { | |
191ea9b2 | 1393 | /* if we're here, all write(s) have completed, so clean up */ |
1da177e4 LT |
1394 | md_done_sync(mddev, r1_bio->sectors, 1); |
1395 | put_buf(r1_bio); | |
1396 | } | |
1397 | } | |
1398 | ||
1399 | /* | |
1400 | * This is a kernel thread which: | |
1401 | * | |
1402 | * 1. Retries failed read operations on working mirrors. | |
1403 | * 2. Updates the raid superblock when problems encounter. | |
1404 | * 3. Performs writes following reads for array syncronising. | |
1405 | */ | |
1406 | ||
867868fb N |
1407 | static void fix_read_error(conf_t *conf, int read_disk, |
1408 | sector_t sect, int sectors) | |
1409 | { | |
1410 | mddev_t *mddev = conf->mddev; | |
1411 | while(sectors) { | |
1412 | int s = sectors; | |
1413 | int d = read_disk; | |
1414 | int success = 0; | |
1415 | int start; | |
1416 | mdk_rdev_t *rdev; | |
1417 | ||
1418 | if (s > (PAGE_SIZE>>9)) | |
1419 | s = PAGE_SIZE >> 9; | |
1420 | ||
1421 | do { | |
1422 | /* Note: no rcu protection needed here | |
1423 | * as this is synchronous in the raid1d thread | |
1424 | * which is the thread that might remove | |
1425 | * a device. If raid1d ever becomes multi-threaded.... | |
1426 | */ | |
1427 | rdev = conf->mirrors[d].rdev; | |
1428 | if (rdev && | |
1429 | test_bit(In_sync, &rdev->flags) && | |
ccebd4c4 JB |
1430 | sync_page_io(rdev, sect, s<<9, |
1431 | conf->tmppage, READ, false)) | |
867868fb N |
1432 | success = 1; |
1433 | else { | |
1434 | d++; | |
1435 | if (d == conf->raid_disks) | |
1436 | d = 0; | |
1437 | } | |
1438 | } while (!success && d != read_disk); | |
1439 | ||
1440 | if (!success) { | |
1441 | /* Cannot read from anywhere -- bye bye array */ | |
1442 | md_error(mddev, conf->mirrors[read_disk].rdev); | |
1443 | break; | |
1444 | } | |
1445 | /* write it back and re-read */ | |
1446 | start = d; | |
1447 | while (d != read_disk) { | |
1448 | if (d==0) | |
1449 | d = conf->raid_disks; | |
1450 | d--; | |
1451 | rdev = conf->mirrors[d].rdev; | |
1452 | if (rdev && | |
1453 | test_bit(In_sync, &rdev->flags)) { | |
ccebd4c4 JB |
1454 | if (sync_page_io(rdev, sect, s<<9, |
1455 | conf->tmppage, WRITE, false) | |
867868fb N |
1456 | == 0) |
1457 | /* Well, this device is dead */ | |
1458 | md_error(mddev, rdev); | |
1459 | } | |
1460 | } | |
1461 | d = start; | |
1462 | while (d != read_disk) { | |
1463 | char b[BDEVNAME_SIZE]; | |
1464 | if (d==0) | |
1465 | d = conf->raid_disks; | |
1466 | d--; | |
1467 | rdev = conf->mirrors[d].rdev; | |
1468 | if (rdev && | |
1469 | test_bit(In_sync, &rdev->flags)) { | |
ccebd4c4 JB |
1470 | if (sync_page_io(rdev, sect, s<<9, |
1471 | conf->tmppage, READ, false) | |
867868fb N |
1472 | == 0) |
1473 | /* Well, this device is dead */ | |
1474 | md_error(mddev, rdev); | |
1475 | else { | |
1476 | atomic_add(s, &rdev->corrected_errors); | |
1477 | printk(KERN_INFO | |
9dd1e2fa | 1478 | "md/raid1:%s: read error corrected " |
867868fb N |
1479 | "(%d sectors at %llu on %s)\n", |
1480 | mdname(mddev), s, | |
969b755a RD |
1481 | (unsigned long long)(sect + |
1482 | rdev->data_offset), | |
867868fb N |
1483 | bdevname(rdev->bdev, b)); |
1484 | } | |
1485 | } | |
1486 | } | |
1487 | sectors -= s; | |
1488 | sect += s; | |
1489 | } | |
1490 | } | |
1491 | ||
1da177e4 LT |
1492 | static void raid1d(mddev_t *mddev) |
1493 | { | |
1494 | r1bio_t *r1_bio; | |
1495 | struct bio *bio; | |
1496 | unsigned long flags; | |
070ec55d | 1497 | conf_t *conf = mddev->private; |
1da177e4 | 1498 | struct list_head *head = &conf->retry_list; |
1da177e4 | 1499 | mdk_rdev_t *rdev; |
e1dfa0a2 | 1500 | struct blk_plug plug; |
1da177e4 LT |
1501 | |
1502 | md_check_recovery(mddev); | |
e1dfa0a2 N |
1503 | |
1504 | blk_start_plug(&plug); | |
1da177e4 LT |
1505 | for (;;) { |
1506 | char b[BDEVNAME_SIZE]; | |
191ea9b2 | 1507 | |
c3b328ac N |
1508 | if (atomic_read(&mddev->plug_cnt) == 0) |
1509 | flush_pending_writes(conf); | |
191ea9b2 | 1510 | |
a35e63ef N |
1511 | spin_lock_irqsave(&conf->device_lock, flags); |
1512 | if (list_empty(head)) { | |
1513 | spin_unlock_irqrestore(&conf->device_lock, flags); | |
1da177e4 | 1514 | break; |
a35e63ef | 1515 | } |
1da177e4 LT |
1516 | r1_bio = list_entry(head->prev, r1bio_t, retry_list); |
1517 | list_del(head->prev); | |
ddaf22ab | 1518 | conf->nr_queued--; |
1da177e4 LT |
1519 | spin_unlock_irqrestore(&conf->device_lock, flags); |
1520 | ||
1521 | mddev = r1_bio->mddev; | |
070ec55d | 1522 | conf = mddev->private; |
7eaceacc | 1523 | if (test_bit(R1BIO_IsSync, &r1_bio->state)) |
1da177e4 | 1524 | sync_request_write(mddev, r1_bio); |
7eaceacc | 1525 | else { |
1da177e4 | 1526 | int disk; |
ddaf22ab N |
1527 | |
1528 | /* we got a read error. Maybe the drive is bad. Maybe just | |
1529 | * the block and we can fix it. | |
1530 | * We freeze all other IO, and try reading the block from | |
1531 | * other devices. When we find one, we re-write | |
1532 | * and check it that fixes the read error. | |
1533 | * This is all done synchronously while the array is | |
1534 | * frozen | |
1535 | */ | |
867868fb N |
1536 | if (mddev->ro == 0) { |
1537 | freeze_array(conf); | |
1538 | fix_read_error(conf, r1_bio->read_disk, | |
1539 | r1_bio->sector, | |
1540 | r1_bio->sectors); | |
1541 | unfreeze_array(conf); | |
d0e26078 N |
1542 | } else |
1543 | md_error(mddev, | |
1544 | conf->mirrors[r1_bio->read_disk].rdev); | |
ddaf22ab | 1545 | |
1da177e4 | 1546 | bio = r1_bio->bios[r1_bio->read_disk]; |
d0e26078 | 1547 | if ((disk=read_balance(conf, r1_bio)) == -1) { |
9dd1e2fa | 1548 | printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O" |
1da177e4 | 1549 | " read error for block %llu\n", |
9dd1e2fa | 1550 | mdname(mddev), |
1da177e4 LT |
1551 | bdevname(bio->bi_bdev,b), |
1552 | (unsigned long long)r1_bio->sector); | |
1553 | raid_end_bio_io(r1_bio); | |
1554 | } else { | |
2c7d46ec | 1555 | const unsigned long do_sync = r1_bio->master_bio->bi_rw & REQ_SYNC; |
cf30a473 N |
1556 | r1_bio->bios[r1_bio->read_disk] = |
1557 | mddev->ro ? IO_BLOCKED : NULL; | |
1da177e4 LT |
1558 | r1_bio->read_disk = disk; |
1559 | bio_put(bio); | |
a167f663 N |
1560 | bio = bio_clone_mddev(r1_bio->master_bio, |
1561 | GFP_NOIO, mddev); | |
1da177e4 LT |
1562 | r1_bio->bios[r1_bio->read_disk] = bio; |
1563 | rdev = conf->mirrors[disk].rdev; | |
1564 | if (printk_ratelimit()) | |
9dd1e2fa | 1565 | printk(KERN_ERR "md/raid1:%s: redirecting sector %llu to" |
d754c5ae | 1566 | " other mirror: %s\n", |
9dd1e2fa | 1567 | mdname(mddev), |
d754c5ae N |
1568 | (unsigned long long)r1_bio->sector, |
1569 | bdevname(rdev->bdev,b)); | |
1da177e4 LT |
1570 | bio->bi_sector = r1_bio->sector + rdev->data_offset; |
1571 | bio->bi_bdev = rdev->bdev; | |
1572 | bio->bi_end_io = raid1_end_read_request; | |
7b6d91da | 1573 | bio->bi_rw = READ | do_sync; |
1da177e4 | 1574 | bio->bi_private = r1_bio; |
1da177e4 LT |
1575 | generic_make_request(bio); |
1576 | } | |
1577 | } | |
1d9d5241 | 1578 | cond_resched(); |
1da177e4 | 1579 | } |
e1dfa0a2 | 1580 | blk_finish_plug(&plug); |
1da177e4 LT |
1581 | } |
1582 | ||
1583 | ||
1584 | static int init_resync(conf_t *conf) | |
1585 | { | |
1586 | int buffs; | |
1587 | ||
1588 | buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE; | |
9e77c485 | 1589 | BUG_ON(conf->r1buf_pool); |
1da177e4 LT |
1590 | conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free, |
1591 | conf->poolinfo); | |
1592 | if (!conf->r1buf_pool) | |
1593 | return -ENOMEM; | |
1594 | conf->next_resync = 0; | |
1595 | return 0; | |
1596 | } | |
1597 | ||
1598 | /* | |
1599 | * perform a "sync" on one "block" | |
1600 | * | |
1601 | * We need to make sure that no normal I/O request - particularly write | |
1602 | * requests - conflict with active sync requests. | |
1603 | * | |
1604 | * This is achieved by tracking pending requests and a 'barrier' concept | |
1605 | * that can be installed to exclude normal IO requests. | |
1606 | */ | |
1607 | ||
57afd89f | 1608 | static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster) |
1da177e4 | 1609 | { |
070ec55d | 1610 | conf_t *conf = mddev->private; |
1da177e4 LT |
1611 | r1bio_t *r1_bio; |
1612 | struct bio *bio; | |
1613 | sector_t max_sector, nr_sectors; | |
3e198f78 | 1614 | int disk = -1; |
1da177e4 | 1615 | int i; |
3e198f78 N |
1616 | int wonly = -1; |
1617 | int write_targets = 0, read_targets = 0; | |
57dab0bd | 1618 | sector_t sync_blocks; |
e3b9703e | 1619 | int still_degraded = 0; |
1da177e4 LT |
1620 | |
1621 | if (!conf->r1buf_pool) | |
1622 | if (init_resync(conf)) | |
57afd89f | 1623 | return 0; |
1da177e4 | 1624 | |
58c0fed4 | 1625 | max_sector = mddev->dev_sectors; |
1da177e4 | 1626 | if (sector_nr >= max_sector) { |
191ea9b2 N |
1627 | /* If we aborted, we need to abort the |
1628 | * sync on the 'current' bitmap chunk (there will | |
1629 | * only be one in raid1 resync. | |
1630 | * We can find the current addess in mddev->curr_resync | |
1631 | */ | |
6a806c51 N |
1632 | if (mddev->curr_resync < max_sector) /* aborted */ |
1633 | bitmap_end_sync(mddev->bitmap, mddev->curr_resync, | |
191ea9b2 | 1634 | &sync_blocks, 1); |
6a806c51 | 1635 | else /* completed sync */ |
191ea9b2 | 1636 | conf->fullsync = 0; |
6a806c51 N |
1637 | |
1638 | bitmap_close_sync(mddev->bitmap); | |
1da177e4 LT |
1639 | close_sync(conf); |
1640 | return 0; | |
1641 | } | |
1642 | ||
07d84d10 N |
1643 | if (mddev->bitmap == NULL && |
1644 | mddev->recovery_cp == MaxSector && | |
6394cca5 | 1645 | !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) && |
07d84d10 N |
1646 | conf->fullsync == 0) { |
1647 | *skipped = 1; | |
1648 | return max_sector - sector_nr; | |
1649 | } | |
6394cca5 N |
1650 | /* before building a request, check if we can skip these blocks.. |
1651 | * This call the bitmap_start_sync doesn't actually record anything | |
1652 | */ | |
e3b9703e | 1653 | if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) && |
e5de485f | 1654 | !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) { |
191ea9b2 N |
1655 | /* We can skip this block, and probably several more */ |
1656 | *skipped = 1; | |
1657 | return sync_blocks; | |
1658 | } | |
1da177e4 | 1659 | /* |
17999be4 N |
1660 | * If there is non-resync activity waiting for a turn, |
1661 | * and resync is going fast enough, | |
1662 | * then let it though before starting on this new sync request. | |
1da177e4 | 1663 | */ |
17999be4 | 1664 | if (!go_faster && conf->nr_waiting) |
1da177e4 | 1665 | msleep_interruptible(1000); |
17999be4 | 1666 | |
b47490c9 | 1667 | bitmap_cond_end_sync(mddev->bitmap, sector_nr); |
1c4588e9 | 1668 | r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO); |
17999be4 N |
1669 | raise_barrier(conf); |
1670 | ||
1671 | conf->next_resync = sector_nr; | |
1da177e4 | 1672 | |
3e198f78 | 1673 | rcu_read_lock(); |
1da177e4 | 1674 | /* |
3e198f78 N |
1675 | * If we get a correctably read error during resync or recovery, |
1676 | * we might want to read from a different device. So we | |
1677 | * flag all drives that could conceivably be read from for READ, | |
1678 | * and any others (which will be non-In_sync devices) for WRITE. | |
1679 | * If a read fails, we try reading from something else for which READ | |
1680 | * is OK. | |
1da177e4 | 1681 | */ |
1da177e4 | 1682 | |
1da177e4 LT |
1683 | r1_bio->mddev = mddev; |
1684 | r1_bio->sector = sector_nr; | |
191ea9b2 | 1685 | r1_bio->state = 0; |
1da177e4 | 1686 | set_bit(R1BIO_IsSync, &r1_bio->state); |
1da177e4 LT |
1687 | |
1688 | for (i=0; i < conf->raid_disks; i++) { | |
3e198f78 | 1689 | mdk_rdev_t *rdev; |
1da177e4 LT |
1690 | bio = r1_bio->bios[i]; |
1691 | ||
1692 | /* take from bio_init */ | |
1693 | bio->bi_next = NULL; | |
db8d9d35 | 1694 | bio->bi_flags &= ~(BIO_POOL_MASK-1); |
1da177e4 | 1695 | bio->bi_flags |= 1 << BIO_UPTODATE; |
db8d9d35 | 1696 | bio->bi_comp_cpu = -1; |
802ba064 | 1697 | bio->bi_rw = READ; |
1da177e4 LT |
1698 | bio->bi_vcnt = 0; |
1699 | bio->bi_idx = 0; | |
1700 | bio->bi_phys_segments = 0; | |
1da177e4 LT |
1701 | bio->bi_size = 0; |
1702 | bio->bi_end_io = NULL; | |
1703 | bio->bi_private = NULL; | |
1704 | ||
3e198f78 N |
1705 | rdev = rcu_dereference(conf->mirrors[i].rdev); |
1706 | if (rdev == NULL || | |
1707 | test_bit(Faulty, &rdev->flags)) { | |
e3b9703e N |
1708 | still_degraded = 1; |
1709 | continue; | |
3e198f78 | 1710 | } else if (!test_bit(In_sync, &rdev->flags)) { |
1da177e4 LT |
1711 | bio->bi_rw = WRITE; |
1712 | bio->bi_end_io = end_sync_write; | |
1713 | write_targets ++; | |
3e198f78 N |
1714 | } else { |
1715 | /* may need to read from here */ | |
1716 | bio->bi_rw = READ; | |
1717 | bio->bi_end_io = end_sync_read; | |
1718 | if (test_bit(WriteMostly, &rdev->flags)) { | |
1719 | if (wonly < 0) | |
1720 | wonly = i; | |
1721 | } else { | |
1722 | if (disk < 0) | |
1723 | disk = i; | |
1724 | } | |
1725 | read_targets++; | |
1726 | } | |
1727 | atomic_inc(&rdev->nr_pending); | |
1728 | bio->bi_sector = sector_nr + rdev->data_offset; | |
1729 | bio->bi_bdev = rdev->bdev; | |
1da177e4 LT |
1730 | bio->bi_private = r1_bio; |
1731 | } | |
3e198f78 N |
1732 | rcu_read_unlock(); |
1733 | if (disk < 0) | |
1734 | disk = wonly; | |
1735 | r1_bio->read_disk = disk; | |
191ea9b2 | 1736 | |
3e198f78 N |
1737 | if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0) |
1738 | /* extra read targets are also write targets */ | |
1739 | write_targets += read_targets-1; | |
1740 | ||
1741 | if (write_targets == 0 || read_targets == 0) { | |
1da177e4 LT |
1742 | /* There is nowhere to write, so all non-sync |
1743 | * drives must be failed - so we are finished | |
1744 | */ | |
57afd89f N |
1745 | sector_t rv = max_sector - sector_nr; |
1746 | *skipped = 1; | |
1da177e4 | 1747 | put_buf(r1_bio); |
1da177e4 LT |
1748 | return rv; |
1749 | } | |
1750 | ||
c6207277 N |
1751 | if (max_sector > mddev->resync_max) |
1752 | max_sector = mddev->resync_max; /* Don't do IO beyond here */ | |
1da177e4 | 1753 | nr_sectors = 0; |
289e99e8 | 1754 | sync_blocks = 0; |
1da177e4 LT |
1755 | do { |
1756 | struct page *page; | |
1757 | int len = PAGE_SIZE; | |
1758 | if (sector_nr + (len>>9) > max_sector) | |
1759 | len = (max_sector - sector_nr) << 9; | |
1760 | if (len == 0) | |
1761 | break; | |
6a806c51 N |
1762 | if (sync_blocks == 0) { |
1763 | if (!bitmap_start_sync(mddev->bitmap, sector_nr, | |
e5de485f N |
1764 | &sync_blocks, still_degraded) && |
1765 | !conf->fullsync && | |
1766 | !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) | |
6a806c51 | 1767 | break; |
9e77c485 | 1768 | BUG_ON(sync_blocks < (PAGE_SIZE>>9)); |
7571ae88 | 1769 | if ((len >> 9) > sync_blocks) |
6a806c51 | 1770 | len = sync_blocks<<9; |
ab7a30c7 | 1771 | } |
191ea9b2 | 1772 | |
1da177e4 LT |
1773 | for (i=0 ; i < conf->raid_disks; i++) { |
1774 | bio = r1_bio->bios[i]; | |
1775 | if (bio->bi_end_io) { | |
d11c171e | 1776 | page = bio->bi_io_vec[bio->bi_vcnt].bv_page; |
1da177e4 LT |
1777 | if (bio_add_page(bio, page, len, 0) == 0) { |
1778 | /* stop here */ | |
d11c171e | 1779 | bio->bi_io_vec[bio->bi_vcnt].bv_page = page; |
1da177e4 LT |
1780 | while (i > 0) { |
1781 | i--; | |
1782 | bio = r1_bio->bios[i]; | |
6a806c51 N |
1783 | if (bio->bi_end_io==NULL) |
1784 | continue; | |
1da177e4 LT |
1785 | /* remove last page from this bio */ |
1786 | bio->bi_vcnt--; | |
1787 | bio->bi_size -= len; | |
1788 | bio->bi_flags &= ~(1<< BIO_SEG_VALID); | |
1789 | } | |
1790 | goto bio_full; | |
1791 | } | |
1792 | } | |
1793 | } | |
1794 | nr_sectors += len>>9; | |
1795 | sector_nr += len>>9; | |
191ea9b2 | 1796 | sync_blocks -= (len>>9); |
1da177e4 LT |
1797 | } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES); |
1798 | bio_full: | |
1da177e4 LT |
1799 | r1_bio->sectors = nr_sectors; |
1800 | ||
d11c171e N |
1801 | /* For a user-requested sync, we read all readable devices and do a |
1802 | * compare | |
1803 | */ | |
1804 | if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) { | |
1805 | atomic_set(&r1_bio->remaining, read_targets); | |
1806 | for (i=0; i<conf->raid_disks; i++) { | |
1807 | bio = r1_bio->bios[i]; | |
1808 | if (bio->bi_end_io == end_sync_read) { | |
ddac7c7e | 1809 | md_sync_acct(bio->bi_bdev, nr_sectors); |
d11c171e N |
1810 | generic_make_request(bio); |
1811 | } | |
1812 | } | |
1813 | } else { | |
1814 | atomic_set(&r1_bio->remaining, 1); | |
1815 | bio = r1_bio->bios[r1_bio->read_disk]; | |
ddac7c7e | 1816 | md_sync_acct(bio->bi_bdev, nr_sectors); |
d11c171e | 1817 | generic_make_request(bio); |
1da177e4 | 1818 | |
d11c171e | 1819 | } |
1da177e4 LT |
1820 | return nr_sectors; |
1821 | } | |
1822 | ||
80c3a6ce DW |
1823 | static sector_t raid1_size(mddev_t *mddev, sector_t sectors, int raid_disks) |
1824 | { | |
1825 | if (sectors) | |
1826 | return sectors; | |
1827 | ||
1828 | return mddev->dev_sectors; | |
1829 | } | |
1830 | ||
709ae487 | 1831 | static conf_t *setup_conf(mddev_t *mddev) |
1da177e4 LT |
1832 | { |
1833 | conf_t *conf; | |
709ae487 | 1834 | int i; |
1da177e4 LT |
1835 | mirror_info_t *disk; |
1836 | mdk_rdev_t *rdev; | |
709ae487 | 1837 | int err = -ENOMEM; |
1da177e4 | 1838 | |
9ffae0cf | 1839 | conf = kzalloc(sizeof(conf_t), GFP_KERNEL); |
1da177e4 | 1840 | if (!conf) |
709ae487 | 1841 | goto abort; |
1da177e4 | 1842 | |
9ffae0cf | 1843 | conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks, |
1da177e4 LT |
1844 | GFP_KERNEL); |
1845 | if (!conf->mirrors) | |
709ae487 | 1846 | goto abort; |
1da177e4 | 1847 | |
ddaf22ab N |
1848 | conf->tmppage = alloc_page(GFP_KERNEL); |
1849 | if (!conf->tmppage) | |
709ae487 | 1850 | goto abort; |
ddaf22ab | 1851 | |
709ae487 | 1852 | conf->poolinfo = kzalloc(sizeof(*conf->poolinfo), GFP_KERNEL); |
1da177e4 | 1853 | if (!conf->poolinfo) |
709ae487 | 1854 | goto abort; |
1da177e4 LT |
1855 | conf->poolinfo->raid_disks = mddev->raid_disks; |
1856 | conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc, | |
1857 | r1bio_pool_free, | |
1858 | conf->poolinfo); | |
1859 | if (!conf->r1bio_pool) | |
709ae487 N |
1860 | goto abort; |
1861 | ||
ed9bfdf1 | 1862 | conf->poolinfo->mddev = mddev; |
1da177e4 | 1863 | |
e7e72bf6 | 1864 | spin_lock_init(&conf->device_lock); |
159ec1fc | 1865 | list_for_each_entry(rdev, &mddev->disks, same_set) { |
709ae487 | 1866 | int disk_idx = rdev->raid_disk; |
1da177e4 LT |
1867 | if (disk_idx >= mddev->raid_disks |
1868 | || disk_idx < 0) | |
1869 | continue; | |
1870 | disk = conf->mirrors + disk_idx; | |
1871 | ||
1872 | disk->rdev = rdev; | |
1da177e4 LT |
1873 | |
1874 | disk->head_position = 0; | |
1da177e4 LT |
1875 | } |
1876 | conf->raid_disks = mddev->raid_disks; | |
1877 | conf->mddev = mddev; | |
1da177e4 | 1878 | INIT_LIST_HEAD(&conf->retry_list); |
1da177e4 LT |
1879 | |
1880 | spin_lock_init(&conf->resync_lock); | |
17999be4 | 1881 | init_waitqueue_head(&conf->wait_barrier); |
1da177e4 | 1882 | |
191ea9b2 | 1883 | bio_list_init(&conf->pending_bio_list); |
191ea9b2 | 1884 | |
709ae487 | 1885 | conf->last_used = -1; |
1da177e4 LT |
1886 | for (i = 0; i < conf->raid_disks; i++) { |
1887 | ||
1888 | disk = conf->mirrors + i; | |
1889 | ||
5fd6c1dc N |
1890 | if (!disk->rdev || |
1891 | !test_bit(In_sync, &disk->rdev->flags)) { | |
1da177e4 | 1892 | disk->head_position = 0; |
918f0238 N |
1893 | if (disk->rdev) |
1894 | conf->fullsync = 1; | |
709ae487 N |
1895 | } else if (conf->last_used < 0) |
1896 | /* | |
1897 | * The first working device is used as a | |
1898 | * starting point to read balancing. | |
1899 | */ | |
1900 | conf->last_used = i; | |
1da177e4 | 1901 | } |
709ae487 N |
1902 | |
1903 | err = -EIO; | |
1904 | if (conf->last_used < 0) { | |
9dd1e2fa | 1905 | printk(KERN_ERR "md/raid1:%s: no operational mirrors\n", |
709ae487 N |
1906 | mdname(mddev)); |
1907 | goto abort; | |
1908 | } | |
1909 | err = -ENOMEM; | |
1910 | conf->thread = md_register_thread(raid1d, mddev, NULL); | |
1911 | if (!conf->thread) { | |
1912 | printk(KERN_ERR | |
9dd1e2fa | 1913 | "md/raid1:%s: couldn't allocate thread\n", |
709ae487 N |
1914 | mdname(mddev)); |
1915 | goto abort; | |
11ce99e6 | 1916 | } |
1da177e4 | 1917 | |
709ae487 N |
1918 | return conf; |
1919 | ||
1920 | abort: | |
1921 | if (conf) { | |
1922 | if (conf->r1bio_pool) | |
1923 | mempool_destroy(conf->r1bio_pool); | |
1924 | kfree(conf->mirrors); | |
1925 | safe_put_page(conf->tmppage); | |
1926 | kfree(conf->poolinfo); | |
1927 | kfree(conf); | |
1928 | } | |
1929 | return ERR_PTR(err); | |
1930 | } | |
1931 | ||
1932 | static int run(mddev_t *mddev) | |
1933 | { | |
1934 | conf_t *conf; | |
1935 | int i; | |
1936 | mdk_rdev_t *rdev; | |
1937 | ||
1938 | if (mddev->level != 1) { | |
9dd1e2fa | 1939 | printk(KERN_ERR "md/raid1:%s: raid level not set to mirroring (%d)\n", |
709ae487 N |
1940 | mdname(mddev), mddev->level); |
1941 | return -EIO; | |
1942 | } | |
1943 | if (mddev->reshape_position != MaxSector) { | |
9dd1e2fa | 1944 | printk(KERN_ERR "md/raid1:%s: reshape_position set but not supported\n", |
709ae487 N |
1945 | mdname(mddev)); |
1946 | return -EIO; | |
1947 | } | |
1da177e4 | 1948 | /* |
709ae487 N |
1949 | * copy the already verified devices into our private RAID1 |
1950 | * bookkeeping area. [whatever we allocate in run(), | |
1951 | * should be freed in stop()] | |
1da177e4 | 1952 | */ |
709ae487 N |
1953 | if (mddev->private == NULL) |
1954 | conf = setup_conf(mddev); | |
1955 | else | |
1956 | conf = mddev->private; | |
1da177e4 | 1957 | |
709ae487 N |
1958 | if (IS_ERR(conf)) |
1959 | return PTR_ERR(conf); | |
1da177e4 | 1960 | |
709ae487 N |
1961 | list_for_each_entry(rdev, &mddev->disks, same_set) { |
1962 | disk_stack_limits(mddev->gendisk, rdev->bdev, | |
1963 | rdev->data_offset << 9); | |
1964 | /* as we don't honour merge_bvec_fn, we must never risk | |
627a2d3c N |
1965 | * violating it, so limit ->max_segments to 1 lying within |
1966 | * a single page, as a one page request is never in violation. | |
709ae487 | 1967 | */ |
627a2d3c N |
1968 | if (rdev->bdev->bd_disk->queue->merge_bvec_fn) { |
1969 | blk_queue_max_segments(mddev->queue, 1); | |
1970 | blk_queue_segment_boundary(mddev->queue, | |
1971 | PAGE_CACHE_SIZE - 1); | |
1972 | } | |
1da177e4 | 1973 | } |
191ea9b2 | 1974 | |
709ae487 N |
1975 | mddev->degraded = 0; |
1976 | for (i=0; i < conf->raid_disks; i++) | |
1977 | if (conf->mirrors[i].rdev == NULL || | |
1978 | !test_bit(In_sync, &conf->mirrors[i].rdev->flags) || | |
1979 | test_bit(Faulty, &conf->mirrors[i].rdev->flags)) | |
1980 | mddev->degraded++; | |
1981 | ||
1982 | if (conf->raid_disks - mddev->degraded == 1) | |
1983 | mddev->recovery_cp = MaxSector; | |
1984 | ||
8c6ac868 | 1985 | if (mddev->recovery_cp != MaxSector) |
9dd1e2fa | 1986 | printk(KERN_NOTICE "md/raid1:%s: not clean" |
8c6ac868 AN |
1987 | " -- starting background reconstruction\n", |
1988 | mdname(mddev)); | |
1da177e4 | 1989 | printk(KERN_INFO |
9dd1e2fa | 1990 | "md/raid1:%s: active with %d out of %d mirrors\n", |
1da177e4 LT |
1991 | mdname(mddev), mddev->raid_disks - mddev->degraded, |
1992 | mddev->raid_disks); | |
709ae487 | 1993 | |
1da177e4 LT |
1994 | /* |
1995 | * Ok, everything is just fine now | |
1996 | */ | |
709ae487 N |
1997 | mddev->thread = conf->thread; |
1998 | conf->thread = NULL; | |
1999 | mddev->private = conf; | |
2000 | ||
1f403624 | 2001 | md_set_array_sectors(mddev, raid1_size(mddev, 0, 0)); |
1da177e4 | 2002 | |
0d129228 N |
2003 | mddev->queue->backing_dev_info.congested_fn = raid1_congested; |
2004 | mddev->queue->backing_dev_info.congested_data = mddev; | |
a91a2785 | 2005 | return md_integrity_register(mddev); |
1da177e4 LT |
2006 | } |
2007 | ||
2008 | static int stop(mddev_t *mddev) | |
2009 | { | |
070ec55d | 2010 | conf_t *conf = mddev->private; |
4b6d287f | 2011 | struct bitmap *bitmap = mddev->bitmap; |
4b6d287f N |
2012 | |
2013 | /* wait for behind writes to complete */ | |
e555190d | 2014 | if (bitmap && atomic_read(&bitmap->behind_writes) > 0) { |
9dd1e2fa N |
2015 | printk(KERN_INFO "md/raid1:%s: behind writes in progress - waiting to stop.\n", |
2016 | mdname(mddev)); | |
4b6d287f | 2017 | /* need to kick something here to make sure I/O goes? */ |
e555190d N |
2018 | wait_event(bitmap->behind_wait, |
2019 | atomic_read(&bitmap->behind_writes) == 0); | |
4b6d287f | 2020 | } |
1da177e4 | 2021 | |
409c57f3 N |
2022 | raise_barrier(conf); |
2023 | lower_barrier(conf); | |
2024 | ||
1da177e4 LT |
2025 | md_unregister_thread(mddev->thread); |
2026 | mddev->thread = NULL; | |
1da177e4 LT |
2027 | if (conf->r1bio_pool) |
2028 | mempool_destroy(conf->r1bio_pool); | |
990a8baf JJ |
2029 | kfree(conf->mirrors); |
2030 | kfree(conf->poolinfo); | |
1da177e4 LT |
2031 | kfree(conf); |
2032 | mddev->private = NULL; | |
2033 | return 0; | |
2034 | } | |
2035 | ||
2036 | static int raid1_resize(mddev_t *mddev, sector_t sectors) | |
2037 | { | |
2038 | /* no resync is happening, and there is enough space | |
2039 | * on all devices, so we can resize. | |
2040 | * We need to make sure resync covers any new space. | |
2041 | * If the array is shrinking we should possibly wait until | |
2042 | * any io in the removed space completes, but it hardly seems | |
2043 | * worth it. | |
2044 | */ | |
1f403624 | 2045 | md_set_array_sectors(mddev, raid1_size(mddev, sectors, 0)); |
b522adcd DW |
2046 | if (mddev->array_sectors > raid1_size(mddev, sectors, 0)) |
2047 | return -EINVAL; | |
f233ea5c | 2048 | set_capacity(mddev->gendisk, mddev->array_sectors); |
449aad3e | 2049 | revalidate_disk(mddev->gendisk); |
b522adcd | 2050 | if (sectors > mddev->dev_sectors && |
f233ea5c | 2051 | mddev->recovery_cp == MaxSector) { |
58c0fed4 | 2052 | mddev->recovery_cp = mddev->dev_sectors; |
1da177e4 LT |
2053 | set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); |
2054 | } | |
b522adcd | 2055 | mddev->dev_sectors = sectors; |
4b5c7ae8 | 2056 | mddev->resync_max_sectors = sectors; |
1da177e4 LT |
2057 | return 0; |
2058 | } | |
2059 | ||
63c70c4f | 2060 | static int raid1_reshape(mddev_t *mddev) |
1da177e4 LT |
2061 | { |
2062 | /* We need to: | |
2063 | * 1/ resize the r1bio_pool | |
2064 | * 2/ resize conf->mirrors | |
2065 | * | |
2066 | * We allocate a new r1bio_pool if we can. | |
2067 | * Then raise a device barrier and wait until all IO stops. | |
2068 | * Then resize conf->mirrors and swap in the new r1bio pool. | |
6ea9c07c N |
2069 | * |
2070 | * At the same time, we "pack" the devices so that all the missing | |
2071 | * devices have the higher raid_disk numbers. | |
1da177e4 LT |
2072 | */ |
2073 | mempool_t *newpool, *oldpool; | |
2074 | struct pool_info *newpoolinfo; | |
2075 | mirror_info_t *newmirrors; | |
070ec55d | 2076 | conf_t *conf = mddev->private; |
63c70c4f | 2077 | int cnt, raid_disks; |
c04be0aa | 2078 | unsigned long flags; |
b5470dc5 | 2079 | int d, d2, err; |
1da177e4 | 2080 | |
63c70c4f | 2081 | /* Cannot change chunk_size, layout, or level */ |
664e7c41 | 2082 | if (mddev->chunk_sectors != mddev->new_chunk_sectors || |
63c70c4f N |
2083 | mddev->layout != mddev->new_layout || |
2084 | mddev->level != mddev->new_level) { | |
664e7c41 | 2085 | mddev->new_chunk_sectors = mddev->chunk_sectors; |
63c70c4f N |
2086 | mddev->new_layout = mddev->layout; |
2087 | mddev->new_level = mddev->level; | |
2088 | return -EINVAL; | |
2089 | } | |
2090 | ||
b5470dc5 DW |
2091 | err = md_allow_write(mddev); |
2092 | if (err) | |
2093 | return err; | |
2a2275d6 | 2094 | |
63c70c4f N |
2095 | raid_disks = mddev->raid_disks + mddev->delta_disks; |
2096 | ||
6ea9c07c N |
2097 | if (raid_disks < conf->raid_disks) { |
2098 | cnt=0; | |
2099 | for (d= 0; d < conf->raid_disks; d++) | |
2100 | if (conf->mirrors[d].rdev) | |
2101 | cnt++; | |
2102 | if (cnt > raid_disks) | |
1da177e4 | 2103 | return -EBUSY; |
6ea9c07c | 2104 | } |
1da177e4 LT |
2105 | |
2106 | newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL); | |
2107 | if (!newpoolinfo) | |
2108 | return -ENOMEM; | |
2109 | newpoolinfo->mddev = mddev; | |
2110 | newpoolinfo->raid_disks = raid_disks; | |
2111 | ||
2112 | newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc, | |
2113 | r1bio_pool_free, newpoolinfo); | |
2114 | if (!newpool) { | |
2115 | kfree(newpoolinfo); | |
2116 | return -ENOMEM; | |
2117 | } | |
9ffae0cf | 2118 | newmirrors = kzalloc(sizeof(struct mirror_info) * raid_disks, GFP_KERNEL); |
1da177e4 LT |
2119 | if (!newmirrors) { |
2120 | kfree(newpoolinfo); | |
2121 | mempool_destroy(newpool); | |
2122 | return -ENOMEM; | |
2123 | } | |
1da177e4 | 2124 | |
17999be4 | 2125 | raise_barrier(conf); |
1da177e4 LT |
2126 | |
2127 | /* ok, everything is stopped */ | |
2128 | oldpool = conf->r1bio_pool; | |
2129 | conf->r1bio_pool = newpool; | |
6ea9c07c | 2130 | |
a88aa786 N |
2131 | for (d = d2 = 0; d < conf->raid_disks; d++) { |
2132 | mdk_rdev_t *rdev = conf->mirrors[d].rdev; | |
2133 | if (rdev && rdev->raid_disk != d2) { | |
2134 | char nm[20]; | |
2135 | sprintf(nm, "rd%d", rdev->raid_disk); | |
2136 | sysfs_remove_link(&mddev->kobj, nm); | |
2137 | rdev->raid_disk = d2; | |
2138 | sprintf(nm, "rd%d", rdev->raid_disk); | |
2139 | sysfs_remove_link(&mddev->kobj, nm); | |
2140 | if (sysfs_create_link(&mddev->kobj, | |
2141 | &rdev->kobj, nm)) | |
2142 | printk(KERN_WARNING | |
9dd1e2fa N |
2143 | "md/raid1:%s: cannot register " |
2144 | "%s\n", | |
2145 | mdname(mddev), nm); | |
6ea9c07c | 2146 | } |
a88aa786 N |
2147 | if (rdev) |
2148 | newmirrors[d2++].rdev = rdev; | |
2149 | } | |
1da177e4 LT |
2150 | kfree(conf->mirrors); |
2151 | conf->mirrors = newmirrors; | |
2152 | kfree(conf->poolinfo); | |
2153 | conf->poolinfo = newpoolinfo; | |
2154 | ||
c04be0aa | 2155 | spin_lock_irqsave(&conf->device_lock, flags); |
1da177e4 | 2156 | mddev->degraded += (raid_disks - conf->raid_disks); |
c04be0aa | 2157 | spin_unlock_irqrestore(&conf->device_lock, flags); |
1da177e4 | 2158 | conf->raid_disks = mddev->raid_disks = raid_disks; |
63c70c4f | 2159 | mddev->delta_disks = 0; |
1da177e4 | 2160 | |
6ea9c07c | 2161 | conf->last_used = 0; /* just make sure it is in-range */ |
17999be4 | 2162 | lower_barrier(conf); |
1da177e4 LT |
2163 | |
2164 | set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); | |
2165 | md_wakeup_thread(mddev->thread); | |
2166 | ||
2167 | mempool_destroy(oldpool); | |
2168 | return 0; | |
2169 | } | |
2170 | ||
500af87a | 2171 | static void raid1_quiesce(mddev_t *mddev, int state) |
36fa3063 | 2172 | { |
070ec55d | 2173 | conf_t *conf = mddev->private; |
36fa3063 N |
2174 | |
2175 | switch(state) { | |
6eef4b21 N |
2176 | case 2: /* wake for suspend */ |
2177 | wake_up(&conf->wait_barrier); | |
2178 | break; | |
9e6603da | 2179 | case 1: |
17999be4 | 2180 | raise_barrier(conf); |
36fa3063 | 2181 | break; |
9e6603da | 2182 | case 0: |
17999be4 | 2183 | lower_barrier(conf); |
36fa3063 N |
2184 | break; |
2185 | } | |
36fa3063 N |
2186 | } |
2187 | ||
709ae487 N |
2188 | static void *raid1_takeover(mddev_t *mddev) |
2189 | { | |
2190 | /* raid1 can take over: | |
2191 | * raid5 with 2 devices, any layout or chunk size | |
2192 | */ | |
2193 | if (mddev->level == 5 && mddev->raid_disks == 2) { | |
2194 | conf_t *conf; | |
2195 | mddev->new_level = 1; | |
2196 | mddev->new_layout = 0; | |
2197 | mddev->new_chunk_sectors = 0; | |
2198 | conf = setup_conf(mddev); | |
2199 | if (!IS_ERR(conf)) | |
2200 | conf->barrier = 1; | |
2201 | return conf; | |
2202 | } | |
2203 | return ERR_PTR(-EINVAL); | |
2204 | } | |
1da177e4 | 2205 | |
2604b703 | 2206 | static struct mdk_personality raid1_personality = |
1da177e4 LT |
2207 | { |
2208 | .name = "raid1", | |
2604b703 | 2209 | .level = 1, |
1da177e4 LT |
2210 | .owner = THIS_MODULE, |
2211 | .make_request = make_request, | |
2212 | .run = run, | |
2213 | .stop = stop, | |
2214 | .status = status, | |
2215 | .error_handler = error, | |
2216 | .hot_add_disk = raid1_add_disk, | |
2217 | .hot_remove_disk= raid1_remove_disk, | |
2218 | .spare_active = raid1_spare_active, | |
2219 | .sync_request = sync_request, | |
2220 | .resize = raid1_resize, | |
80c3a6ce | 2221 | .size = raid1_size, |
63c70c4f | 2222 | .check_reshape = raid1_reshape, |
36fa3063 | 2223 | .quiesce = raid1_quiesce, |
709ae487 | 2224 | .takeover = raid1_takeover, |
1da177e4 LT |
2225 | }; |
2226 | ||
2227 | static int __init raid_init(void) | |
2228 | { | |
2604b703 | 2229 | return register_md_personality(&raid1_personality); |
1da177e4 LT |
2230 | } |
2231 | ||
2232 | static void raid_exit(void) | |
2233 | { | |
2604b703 | 2234 | unregister_md_personality(&raid1_personality); |
1da177e4 LT |
2235 | } |
2236 | ||
2237 | module_init(raid_init); | |
2238 | module_exit(raid_exit); | |
2239 | MODULE_LICENSE("GPL"); | |
0efb9e61 | 2240 | MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD"); |
1da177e4 | 2241 | MODULE_ALIAS("md-personality-3"); /* RAID1 */ |
d9d166c2 | 2242 | MODULE_ALIAS("md-raid1"); |
2604b703 | 2243 | MODULE_ALIAS("md-level-1"); |