2 * multipath.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 * MULTIPATH management functions.
10 * derived from raid1.c.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
17 * You should have received a copy of the GNU General Public License
18 * (for example /usr/src/linux/COPYING); if not, write to the Free
19 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <linux/raid/multipath.h>
24 #define MAX_WORK_PER_DISK 128
26 #define NR_RESERVED_BUFS 32
29 static int multipath_map (multipath_conf_t
*conf
)
31 int i
, disks
= conf
->raid_disks
;
34 * Later we do read balancing on the read side
35 * now we use the first available disk.
39 for (i
= 0; i
< disks
; i
++) {
40 mdk_rdev_t
*rdev
= rcu_dereference(conf
->multipaths
[i
].rdev
);
41 if (rdev
&& test_bit(In_sync
, &rdev
->flags
)) {
42 atomic_inc(&rdev
->nr_pending
);
49 printk(KERN_ERR
"multipath_map(): no more operational IO paths?\n");
53 static void multipath_reschedule_retry (struct multipath_bh
*mp_bh
)
56 mddev_t
*mddev
= mp_bh
->mddev
;
57 multipath_conf_t
*conf
= mddev_to_conf(mddev
);
59 spin_lock_irqsave(&conf
->device_lock
, flags
);
60 list_add(&mp_bh
->retry_list
, &conf
->retry_list
);
61 spin_unlock_irqrestore(&conf
->device_lock
, flags
);
62 md_wakeup_thread(mddev
->thread
);
67 * multipath_end_bh_io() is called when we have finished servicing a multipathed
68 * operation and are ready to return a success/failure code to the buffer
71 static void multipath_end_bh_io (struct multipath_bh
*mp_bh
, int err
)
73 struct bio
*bio
= mp_bh
->master_bio
;
74 multipath_conf_t
*conf
= mddev_to_conf(mp_bh
->mddev
);
77 mempool_free(mp_bh
, conf
->pool
);
80 static void multipath_end_request(struct bio
*bio
, int error
)
82 int uptodate
= test_bit(BIO_UPTODATE
, &bio
->bi_flags
);
83 struct multipath_bh
* mp_bh
= (struct multipath_bh
*)(bio
->bi_private
);
84 multipath_conf_t
*conf
= mddev_to_conf(mp_bh
->mddev
);
85 mdk_rdev_t
*rdev
= conf
->multipaths
[mp_bh
->path
].rdev
;
88 multipath_end_bh_io(mp_bh
, 0);
89 else if (!bio_rw_ahead(bio
)) {
93 char b
[BDEVNAME_SIZE
];
94 md_error (mp_bh
->mddev
, rdev
);
95 printk(KERN_ERR
"multipath: %s: rescheduling sector %llu\n",
96 bdevname(rdev
->bdev
,b
),
97 (unsigned long long)bio
->bi_sector
);
98 multipath_reschedule_retry(mp_bh
);
100 multipath_end_bh_io(mp_bh
, error
);
101 rdev_dec_pending(rdev
, conf
->mddev
);
104 static void unplug_slaves(mddev_t
*mddev
)
106 multipath_conf_t
*conf
= mddev_to_conf(mddev
);
110 for (i
=0; i
<mddev
->raid_disks
; i
++) {
111 mdk_rdev_t
*rdev
= rcu_dereference(conf
->multipaths
[i
].rdev
);
112 if (rdev
&& !test_bit(Faulty
, &rdev
->flags
)
113 && atomic_read(&rdev
->nr_pending
)) {
114 struct request_queue
*r_queue
= bdev_get_queue(rdev
->bdev
);
116 atomic_inc(&rdev
->nr_pending
);
121 rdev_dec_pending(rdev
, mddev
);
128 static void multipath_unplug(struct request_queue
*q
)
130 unplug_slaves(q
->queuedata
);
134 static int multipath_make_request (struct request_queue
*q
, struct bio
* bio
)
136 mddev_t
*mddev
= q
->queuedata
;
137 multipath_conf_t
*conf
= mddev_to_conf(mddev
);
138 struct multipath_bh
* mp_bh
;
139 struct multipath_info
*multipath
;
140 const int rw
= bio_data_dir(bio
);
143 if (unlikely(bio_barrier(bio
))) {
144 bio_endio(bio
, -EOPNOTSUPP
);
148 mp_bh
= mempool_alloc(conf
->pool
, GFP_NOIO
);
150 mp_bh
->master_bio
= bio
;
151 mp_bh
->mddev
= mddev
;
153 cpu
= part_stat_lock();
154 part_stat_inc(cpu
, &mddev
->gendisk
->part0
, ios
[rw
]);
155 part_stat_add(cpu
, &mddev
->gendisk
->part0
, sectors
[rw
],
159 mp_bh
->path
= multipath_map(conf
);
160 if (mp_bh
->path
< 0) {
161 bio_endio(bio
, -EIO
);
162 mempool_free(mp_bh
, conf
->pool
);
165 multipath
= conf
->multipaths
+ mp_bh
->path
;
168 mp_bh
->bio
.bi_sector
+= multipath
->rdev
->data_offset
;
169 mp_bh
->bio
.bi_bdev
= multipath
->rdev
->bdev
;
170 mp_bh
->bio
.bi_rw
|= (1 << BIO_RW_FAILFAST_TRANSPORT
);
171 mp_bh
->bio
.bi_end_io
= multipath_end_request
;
172 mp_bh
->bio
.bi_private
= mp_bh
;
173 generic_make_request(&mp_bh
->bio
);
177 static void multipath_status (struct seq_file
*seq
, mddev_t
*mddev
)
179 multipath_conf_t
*conf
= mddev_to_conf(mddev
);
182 seq_printf (seq
, " [%d/%d] [", conf
->raid_disks
,
183 conf
->working_disks
);
184 for (i
= 0; i
< conf
->raid_disks
; i
++)
185 seq_printf (seq
, "%s",
186 conf
->multipaths
[i
].rdev
&&
187 test_bit(In_sync
, &conf
->multipaths
[i
].rdev
->flags
) ? "U" : "_");
188 seq_printf (seq
, "]");
191 static int multipath_congested(void *data
, int bits
)
193 mddev_t
*mddev
= data
;
194 multipath_conf_t
*conf
= mddev_to_conf(mddev
);
198 for (i
= 0; i
< mddev
->raid_disks
; i
++) {
199 mdk_rdev_t
*rdev
= rcu_dereference(conf
->multipaths
[i
].rdev
);
200 if (rdev
&& !test_bit(Faulty
, &rdev
->flags
)) {
201 struct request_queue
*q
= bdev_get_queue(rdev
->bdev
);
203 ret
|= bdi_congested(&q
->backing_dev_info
, bits
);
204 /* Just like multipath_map, we just check the
205 * first available device
215 * Careful, this can execute in IRQ contexts as well!
217 static void multipath_error (mddev_t
*mddev
, mdk_rdev_t
*rdev
)
219 multipath_conf_t
*conf
= mddev_to_conf(mddev
);
221 if (conf
->working_disks
<= 1) {
223 * Uh oh, we can do nothing if this is our last path, but
224 * first check if this is a queued request for a device
225 * which has just failed.
228 "multipath: only one IO path left and IO error.\n");
229 /* leave it active... it's all we have */
232 * Mark disk as unusable
234 if (!test_bit(Faulty
, &rdev
->flags
)) {
235 char b
[BDEVNAME_SIZE
];
236 clear_bit(In_sync
, &rdev
->flags
);
237 set_bit(Faulty
, &rdev
->flags
);
238 set_bit(MD_CHANGE_DEVS
, &mddev
->flags
);
239 conf
->working_disks
--;
241 printk(KERN_ALERT
"multipath: IO failure on %s,"
242 " disabling IO path.\n"
243 "multipath: Operation continuing"
244 " on %d IO paths.\n",
245 bdevname (rdev
->bdev
,b
),
246 conf
->working_disks
);
251 static void print_multipath_conf (multipath_conf_t
*conf
)
254 struct multipath_info
*tmp
;
256 printk("MULTIPATH conf printout:\n");
258 printk("(conf==NULL)\n");
261 printk(" --- wd:%d rd:%d\n", conf
->working_disks
,
264 for (i
= 0; i
< conf
->raid_disks
; i
++) {
265 char b
[BDEVNAME_SIZE
];
266 tmp
= conf
->multipaths
+ i
;
268 printk(" disk%d, o:%d, dev:%s\n",
269 i
,!test_bit(Faulty
, &tmp
->rdev
->flags
),
270 bdevname(tmp
->rdev
->bdev
,b
));
275 static int multipath_add_disk(mddev_t
*mddev
, mdk_rdev_t
*rdev
)
277 multipath_conf_t
*conf
= mddev
->private;
278 struct request_queue
*q
;
281 struct multipath_info
*p
;
283 int last
= mddev
->raid_disks
- 1;
285 if (rdev
->raid_disk
>= 0)
286 first
= last
= rdev
->raid_disk
;
288 print_multipath_conf(conf
);
290 for (path
= first
; path
<= last
; path
++)
291 if ((p
=conf
->multipaths
+path
)->rdev
== NULL
) {
292 q
= rdev
->bdev
->bd_disk
->queue
;
293 blk_queue_stack_limits(mddev
->queue
, q
);
295 /* as we don't honour merge_bvec_fn, we must never risk
296 * violating it, so limit ->max_sector to one PAGE, as
297 * a one page request is never in violation.
298 * (Note: it is very unlikely that a device with
299 * merge_bvec_fn will be involved in multipath.)
301 if (q
->merge_bvec_fn
&&
302 mddev
->queue
->max_sectors
> (PAGE_SIZE
>>9))
303 blk_queue_max_sectors(mddev
->queue
, PAGE_SIZE
>>9);
305 conf
->working_disks
++;
307 rdev
->raid_disk
= path
;
308 set_bit(In_sync
, &rdev
->flags
);
309 rcu_assign_pointer(p
->rdev
, rdev
);
314 print_multipath_conf(conf
);
319 static int multipath_remove_disk(mddev_t
*mddev
, int number
)
321 multipath_conf_t
*conf
= mddev
->private;
324 struct multipath_info
*p
= conf
->multipaths
+ number
;
326 print_multipath_conf(conf
);
330 if (test_bit(In_sync
, &rdev
->flags
) ||
331 atomic_read(&rdev
->nr_pending
)) {
332 printk(KERN_ERR
"hot-remove-disk, slot %d is identified"
333 " but is still operational!\n", number
);
339 if (atomic_read(&rdev
->nr_pending
)) {
340 /* lost the race, try later */
347 print_multipath_conf(conf
);
354 * This is a kernel thread which:
356 * 1. Retries failed read operations on working multipaths.
357 * 2. Updates the raid superblock when problems encounter.
358 * 3. Performs writes following reads for array syncronising.
361 static void multipathd (mddev_t
*mddev
)
363 struct multipath_bh
*mp_bh
;
366 multipath_conf_t
*conf
= mddev_to_conf(mddev
);
367 struct list_head
*head
= &conf
->retry_list
;
369 md_check_recovery(mddev
);
371 char b
[BDEVNAME_SIZE
];
372 spin_lock_irqsave(&conf
->device_lock
, flags
);
373 if (list_empty(head
))
375 mp_bh
= list_entry(head
->prev
, struct multipath_bh
, retry_list
);
376 list_del(head
->prev
);
377 spin_unlock_irqrestore(&conf
->device_lock
, flags
);
380 bio
->bi_sector
= mp_bh
->master_bio
->bi_sector
;
382 if ((mp_bh
->path
= multipath_map (conf
))<0) {
383 printk(KERN_ALERT
"multipath: %s: unrecoverable IO read"
384 " error for block %llu\n",
385 bdevname(bio
->bi_bdev
,b
),
386 (unsigned long long)bio
->bi_sector
);
387 multipath_end_bh_io(mp_bh
, -EIO
);
389 printk(KERN_ERR
"multipath: %s: redirecting sector %llu"
390 " to another IO path\n",
391 bdevname(bio
->bi_bdev
,b
),
392 (unsigned long long)bio
->bi_sector
);
393 *bio
= *(mp_bh
->master_bio
);
394 bio
->bi_sector
+= conf
->multipaths
[mp_bh
->path
].rdev
->data_offset
;
395 bio
->bi_bdev
= conf
->multipaths
[mp_bh
->path
].rdev
->bdev
;
396 bio
->bi_rw
|= (1 << BIO_RW_FAILFAST_TRANSPORT
);
397 bio
->bi_end_io
= multipath_end_request
;
398 bio
->bi_private
= mp_bh
;
399 generic_make_request(bio
);
402 spin_unlock_irqrestore(&conf
->device_lock
, flags
);
405 static int multipath_run (mddev_t
*mddev
)
407 multipath_conf_t
*conf
;
409 struct multipath_info
*disk
;
411 struct list_head
*tmp
;
413 if (mddev
->level
!= LEVEL_MULTIPATH
) {
414 printk("multipath: %s: raid level not set to multipath IO (%d)\n",
415 mdname(mddev
), mddev
->level
);
419 * copy the already verified devices into our private MULTIPATH
420 * bookkeeping area. [whatever we allocate in multipath_run(),
421 * should be freed in multipath_stop()]
423 mddev
->queue
->queue_lock
= &mddev
->queue
->__queue_lock
;
425 conf
= kzalloc(sizeof(multipath_conf_t
), GFP_KERNEL
);
426 mddev
->private = conf
;
429 "multipath: couldn't allocate memory for %s\n",
434 conf
->multipaths
= kzalloc(sizeof(struct multipath_info
)*mddev
->raid_disks
,
436 if (!conf
->multipaths
) {
438 "multipath: couldn't allocate memory for %s\n",
443 conf
->working_disks
= 0;
444 rdev_for_each(rdev
, tmp
, mddev
) {
445 disk_idx
= rdev
->raid_disk
;
447 disk_idx
>= mddev
->raid_disks
)
450 disk
= conf
->multipaths
+ disk_idx
;
453 blk_queue_stack_limits(mddev
->queue
,
454 rdev
->bdev
->bd_disk
->queue
);
455 /* as we don't honour merge_bvec_fn, we must never risk
456 * violating it, not that we ever expect a device with
457 * a merge_bvec_fn to be involved in multipath */
458 if (rdev
->bdev
->bd_disk
->queue
->merge_bvec_fn
&&
459 mddev
->queue
->max_sectors
> (PAGE_SIZE
>>9))
460 blk_queue_max_sectors(mddev
->queue
, PAGE_SIZE
>>9);
462 if (!test_bit(Faulty
, &rdev
->flags
))
463 conf
->working_disks
++;
466 conf
->raid_disks
= mddev
->raid_disks
;
468 spin_lock_init(&conf
->device_lock
);
469 INIT_LIST_HEAD(&conf
->retry_list
);
471 if (!conf
->working_disks
) {
472 printk(KERN_ERR
"multipath: no operational IO paths for %s\n",
476 mddev
->degraded
= conf
->raid_disks
- conf
->working_disks
;
478 conf
->pool
= mempool_create_kzalloc_pool(NR_RESERVED_BUFS
,
479 sizeof(struct multipath_bh
));
480 if (conf
->pool
== NULL
) {
482 "multipath: couldn't allocate memory for %s\n",
488 mddev
->thread
= md_register_thread(multipathd
, mddev
, "%s_multipath");
489 if (!mddev
->thread
) {
490 printk(KERN_ERR
"multipath: couldn't allocate thread"
491 " for %s\n", mdname(mddev
));
497 "multipath: array %s active with %d out of %d IO paths\n",
498 mdname(mddev
), conf
->working_disks
, mddev
->raid_disks
);
500 * Ok, everything is just fine now
502 mddev
->array_sectors
= mddev
->size
* 2;
504 mddev
->queue
->unplug_fn
= multipath_unplug
;
505 mddev
->queue
->backing_dev_info
.congested_fn
= multipath_congested
;
506 mddev
->queue
->backing_dev_info
.congested_data
= mddev
;
512 mempool_destroy(conf
->pool
);
513 kfree(conf
->multipaths
);
515 mddev
->private = NULL
;
521 static int multipath_stop (mddev_t
*mddev
)
523 multipath_conf_t
*conf
= mddev_to_conf(mddev
);
525 md_unregister_thread(mddev
->thread
);
526 mddev
->thread
= NULL
;
527 blk_sync_queue(mddev
->queue
); /* the unplug fn references 'conf'*/
528 mempool_destroy(conf
->pool
);
529 kfree(conf
->multipaths
);
531 mddev
->private = NULL
;
535 static struct mdk_personality multipath_personality
=
538 .level
= LEVEL_MULTIPATH
,
539 .owner
= THIS_MODULE
,
540 .make_request
= multipath_make_request
,
541 .run
= multipath_run
,
542 .stop
= multipath_stop
,
543 .status
= multipath_status
,
544 .error_handler
= multipath_error
,
545 .hot_add_disk
= multipath_add_disk
,
546 .hot_remove_disk
= multipath_remove_disk
,
549 static int __init
multipath_init (void)
551 return register_md_personality (&multipath_personality
);
554 static void __exit
multipath_exit (void)
556 unregister_md_personality (&multipath_personality
);
559 module_init(multipath_init
);
560 module_exit(multipath_exit
);
561 MODULE_LICENSE("GPL");
562 MODULE_ALIAS("md-personality-7"); /* MULTIPATH */
563 MODULE_ALIAS("md-multipath");
564 MODULE_ALIAS("md-level--4");