blob: f6d08f2416716f7207fe49aba23d154a5eb41fae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * multipath.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 * MULTIPATH management functions.
9 *
10 * derived from raid1.c.
11 *
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)
15 * any later version.
16 *
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.
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/raid/multipath.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#define MAX_WORK_PER_DISK 128
25
26#define NR_RESERVED_BUFS 32
27
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static int multipath_map (multipath_conf_t *conf)
30{
31 int i, disks = conf->raid_disks;
32
33 /*
34 * Later we do read balancing on the read side
35 * now we use the first available disk.
36 */
37
38 rcu_read_lock();
39 for (i = 0; i < disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -080040 mdk_rdev_t *rdev = rcu_dereference(conf->multipaths[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -080041 if (rdev && test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 atomic_inc(&rdev->nr_pending);
43 rcu_read_unlock();
44 return i;
45 }
46 }
47 rcu_read_unlock();
48
49 printk(KERN_ERR "multipath_map(): no more operational IO paths?\n");
50 return (-1);
51}
52
53static void multipath_reschedule_retry (struct multipath_bh *mp_bh)
54{
55 unsigned long flags;
56 mddev_t *mddev = mp_bh->mddev;
57 multipath_conf_t *conf = mddev_to_conf(mddev);
58
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);
63}
64
65
66/*
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
69 * cache layer.
70 */
71static void multipath_end_bh_io (struct multipath_bh *mp_bh, int err)
72{
73 struct bio *bio = mp_bh->master_bio;
74 multipath_conf_t *conf = mddev_to_conf(mp_bh->mddev);
75
NeilBrown6712ecf2007-09-27 12:47:43 +020076 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 mempool_free(mp_bh, conf->pool);
78}
79
NeilBrown6712ecf2007-09-27 12:47:43 +020080static void multipath_end_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
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;
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 if (uptodate)
88 multipath_end_bh_io(mp_bh, 0);
89 else if (!bio_rw_ahead(bio)) {
90 /*
91 * oops, IO error:
92 */
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);
99 } else
100 multipath_end_bh_io(mp_bh, error);
101 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
104static void unplug_slaves(mddev_t *mddev)
105{
106 multipath_conf_t *conf = mddev_to_conf(mddev);
107 int i;
108
109 rcu_read_lock();
110 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800111 mdk_rdev_t *rdev = rcu_dereference(conf->multipaths[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -0800112 if (rdev && !test_bit(Faulty, &rdev->flags)
113 && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200114 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 atomic_inc(&rdev->nr_pending);
117 rcu_read_unlock();
118
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500119 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 rdev_dec_pending(rdev, mddev);
122 rcu_read_lock();
123 }
124 }
125 rcu_read_unlock();
126}
127
Jens Axboe165125e2007-07-24 09:28:11 +0200128static void multipath_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 unplug_slaves(q->queuedata);
131}
132
133
Jens Axboe165125e2007-07-24 09:28:11 +0200134static int multipath_make_request (struct request_queue *q, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
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;
Jens Axboea3623572005-11-01 09:26:16 +0100140 const int rw = bio_data_dir(bio);
Tejun Heoc9959052008-08-25 19:47:21 +0900141 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
NeilBrowne5dcdd82005-09-09 16:23:41 -0700143 if (unlikely(bio_barrier(bio))) {
NeilBrown6712ecf2007-09-27 12:47:43 +0200144 bio_endio(bio, -EOPNOTSUPP);
NeilBrowne5dcdd82005-09-09 16:23:41 -0700145 return 0;
146 }
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 mp_bh = mempool_alloc(conf->pool, GFP_NOIO);
149
150 mp_bh->master_bio = bio;
151 mp_bh->mddev = mddev;
152
Tejun Heo074a7ac2008-08-25 19:56:14 +0900153 cpu = part_stat_lock();
154 part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]);
155 part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw],
156 bio_sectors(bio));
157 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 mp_bh->path = multipath_map(conf);
160 if (mp_bh->path < 0) {
NeilBrown6712ecf2007-09-27 12:47:43 +0200161 bio_endio(bio, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 mempool_free(mp_bh, conf->pool);
163 return 0;
164 }
165 multipath = conf->multipaths + mp_bh->path;
166
167 mp_bh->bio = *bio;
168 mp_bh->bio.bi_sector += multipath->rdev->data_offset;
169 mp_bh->bio.bi_bdev = multipath->rdev->bdev;
Mike Christie6000a362008-08-19 18:45:30 -0500170 mp_bh->bio.bi_rw |= (1 << BIO_RW_FAILFAST_TRANSPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 mp_bh->bio.bi_end_io = multipath_end_request;
172 mp_bh->bio.bi_private = mp_bh;
173 generic_make_request(&mp_bh->bio);
174 return 0;
175}
176
177static void multipath_status (struct seq_file *seq, mddev_t *mddev)
178{
179 multipath_conf_t *conf = mddev_to_conf(mddev);
180 int i;
181
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 &&
NeilBrownb2d444d2005-11-08 21:39:31 -0800187 test_bit(In_sync, &conf->multipaths[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 seq_printf (seq, "]");
189}
190
NeilBrown0d129222006-10-03 01:15:54 -0700191static int multipath_congested(void *data, int bits)
192{
193 mddev_t *mddev = data;
194 multipath_conf_t *conf = mddev_to_conf(mddev);
195 int i, ret = 0;
196
197 rcu_read_lock();
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)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200201 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700202
203 ret |= bdi_congested(&q->backing_dev_info, bits);
204 /* Just like multipath_map, we just check the
205 * first available device
206 */
207 break;
208 }
209 }
210 rcu_read_unlock();
211 return ret;
212}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214/*
215 * Careful, this can execute in IRQ contexts as well!
216 */
217static void multipath_error (mddev_t *mddev, mdk_rdev_t *rdev)
218{
219 multipath_conf_t *conf = mddev_to_conf(mddev);
220
221 if (conf->working_disks <= 1) {
222 /*
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.
226 */
227 printk(KERN_ALERT
228 "multipath: only one IO path left and IO error.\n");
229 /* leave it active... it's all we have */
230 } else {
231 /*
232 * Mark disk as unusable
233 */
NeilBrownb2d444d2005-11-08 21:39:31 -0800234 if (!test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 char b[BDEVNAME_SIZE];
NeilBrownb2d444d2005-11-08 21:39:31 -0800236 clear_bit(In_sync, &rdev->flags);
237 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -0700238 set_bit(MD_CHANGE_DEVS, &mddev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 conf->working_disks--;
NeilBrown750a8f32006-10-28 10:38:31 -0700240 mddev->degraded++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 printk(KERN_ALERT "multipath: IO failure on %s,"
Nick Andrewd7a420c2008-04-28 02:15:55 -0700242 " disabling IO path.\n"
243 "multipath: Operation continuing"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 " on %d IO paths.\n",
245 bdevname (rdev->bdev,b),
246 conf->working_disks);
247 }
248 }
249}
250
251static void print_multipath_conf (multipath_conf_t *conf)
252{
253 int i;
254 struct multipath_info *tmp;
255
256 printk("MULTIPATH conf printout:\n");
257 if (!conf) {
258 printk("(conf==NULL)\n");
259 return;
260 }
261 printk(" --- wd:%d rd:%d\n", conf->working_disks,
262 conf->raid_disks);
263
264 for (i = 0; i < conf->raid_disks; i++) {
265 char b[BDEVNAME_SIZE];
266 tmp = conf->multipaths + i;
267 if (tmp->rdev)
268 printk(" disk%d, o:%d, dev:%s\n",
NeilBrownb2d444d2005-11-08 21:39:31 -0800269 i,!test_bit(Faulty, &tmp->rdev->flags),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 bdevname(tmp->rdev->bdev,b));
271 }
272}
273
274
275static int multipath_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
276{
277 multipath_conf_t *conf = mddev->private;
Jesper Juhl352d7682006-01-09 20:54:44 -0800278 struct request_queue *q;
Neil Brown199050e2008-06-28 08:31:33 +1000279 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 int path;
281 struct multipath_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +1000282 int first = 0;
283 int last = mddev->raid_disks - 1;
284
285 if (rdev->raid_disk >= 0)
286 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 print_multipath_conf(conf);
289
Neil Brown6c2fce22008-06-28 08:31:31 +1000290 for (path = first; path <= last; path++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if ((p=conf->multipaths+path)->rdev == NULL) {
Jesper Juhl352d7682006-01-09 20:54:44 -0800292 q = rdev->bdev->bd_disk->queue;
293 blk_queue_stack_limits(mddev->queue, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
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.)
300 */
Jesper Juhl352d7682006-01-09 20:54:44 -0800301 if (q->merge_bvec_fn &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 mddev->queue->max_sectors > (PAGE_SIZE>>9))
303 blk_queue_max_sectors(mddev->queue, PAGE_SIZE>>9);
304
305 conf->working_disks++;
NeilBrown750a8f32006-10-28 10:38:31 -0700306 mddev->degraded--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 rdev->raid_disk = path;
NeilBrownb2d444d2005-11-08 21:39:31 -0800308 set_bit(In_sync, &rdev->flags);
Suzanne Woodd6065f72005-11-08 21:39:27 -0800309 rcu_assign_pointer(p->rdev, rdev);
Neil Brown199050e2008-06-28 08:31:33 +1000310 err = 0;
311 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313
314 print_multipath_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +1000315
316 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
319static int multipath_remove_disk(mddev_t *mddev, int number)
320{
321 multipath_conf_t *conf = mddev->private;
322 int err = 0;
323 mdk_rdev_t *rdev;
324 struct multipath_info *p = conf->multipaths + number;
325
326 print_multipath_conf(conf);
327
328 rdev = p->rdev;
329 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -0800330 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 atomic_read(&rdev->nr_pending)) {
NeilBrowndfc70642008-05-23 13:04:39 -0700332 printk(KERN_ERR "hot-remove-disk, slot %d is identified"
333 " but is still operational!\n", number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 err = -EBUSY;
335 goto abort;
336 }
337 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -0700338 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (atomic_read(&rdev->nr_pending)) {
340 /* lost the race, try later */
341 err = -EBUSY;
342 p->rdev = rdev;
343 }
344 }
345abort:
346
347 print_multipath_conf(conf);
348 return err;
349}
350
351
352
353/*
354 * This is a kernel thread which:
355 *
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.
359 */
360
361static void multipathd (mddev_t *mddev)
362{
363 struct multipath_bh *mp_bh;
364 struct bio *bio;
365 unsigned long flags;
366 multipath_conf_t *conf = mddev_to_conf(mddev);
367 struct list_head *head = &conf->retry_list;
368
369 md_check_recovery(mddev);
370 for (;;) {
371 char b[BDEVNAME_SIZE];
372 spin_lock_irqsave(&conf->device_lock, flags);
373 if (list_empty(head))
374 break;
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);
378
379 bio = &mp_bh->bio;
380 bio->bi_sector = mp_bh->master_bio->bi_sector;
381
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);
388 } else {
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;
Mike Christie6000a362008-08-19 18:45:30 -0500396 bio->bi_rw |= (1 << BIO_RW_FAILFAST_TRANSPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 bio->bi_end_io = multipath_end_request;
398 bio->bi_private = mp_bh;
399 generic_make_request(bio);
400 }
401 }
402 spin_unlock_irqrestore(&conf->device_lock, flags);
403}
404
405static int multipath_run (mddev_t *mddev)
406{
407 multipath_conf_t *conf;
408 int disk_idx;
409 struct multipath_info *disk;
410 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 if (mddev->level != LEVEL_MULTIPATH) {
413 printk("multipath: %s: raid level not set to multipath IO (%d)\n",
414 mdname(mddev), mddev->level);
415 goto out;
416 }
417 /*
418 * copy the already verified devices into our private MULTIPATH
419 * bookkeeping area. [whatever we allocate in multipath_run(),
420 * should be freed in multipath_stop()]
421 */
Neil Browne7e72bf2008-05-14 16:05:54 -0700422 mddev->queue->queue_lock = &mddev->queue->__queue_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
NeilBrown9ffae0c2006-01-06 00:20:32 -0800424 conf = kzalloc(sizeof(multipath_conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 mddev->private = conf;
426 if (!conf) {
427 printk(KERN_ERR
428 "multipath: couldn't allocate memory for %s\n",
429 mdname(mddev));
430 goto out;
431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
NeilBrown9ffae0c2006-01-06 00:20:32 -0800433 conf->multipaths = kzalloc(sizeof(struct multipath_info)*mddev->raid_disks,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 GFP_KERNEL);
435 if (!conf->multipaths) {
436 printk(KERN_ERR
437 "multipath: couldn't allocate memory for %s\n",
438 mdname(mddev));
439 goto out_free_conf;
440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 conf->working_disks = 0;
Cheng Renquan159ec1f2009-01-09 08:31:08 +1100443 list_for_each_entry(rdev, &mddev->disks, same_set) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 disk_idx = rdev->raid_disk;
445 if (disk_idx < 0 ||
446 disk_idx >= mddev->raid_disks)
447 continue;
448
449 disk = conf->multipaths + disk_idx;
450 disk->rdev = rdev;
451
452 blk_queue_stack_limits(mddev->queue,
453 rdev->bdev->bd_disk->queue);
454 /* as we don't honour merge_bvec_fn, we must never risk
455 * violating it, not that we ever expect a device with
456 * a merge_bvec_fn to be involved in multipath */
457 if (rdev->bdev->bd_disk->queue->merge_bvec_fn &&
458 mddev->queue->max_sectors > (PAGE_SIZE>>9))
459 blk_queue_max_sectors(mddev->queue, PAGE_SIZE>>9);
460
NeilBrownb2d444d2005-11-08 21:39:31 -0800461 if (!test_bit(Faulty, &rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 conf->working_disks++;
463 }
464
465 conf->raid_disks = mddev->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 conf->mddev = mddev;
467 spin_lock_init(&conf->device_lock);
468 INIT_LIST_HEAD(&conf->retry_list);
469
470 if (!conf->working_disks) {
471 printk(KERN_ERR "multipath: no operational IO paths for %s\n",
472 mdname(mddev));
473 goto out_free_conf;
474 }
NeilBrown2e333e82006-10-21 10:24:07 -0700475 mddev->degraded = conf->raid_disks - conf->working_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Matthew Dobson26b6e052006-03-26 01:37:48 -0800477 conf->pool = mempool_create_kzalloc_pool(NR_RESERVED_BUFS,
478 sizeof(struct multipath_bh));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (conf->pool == NULL) {
480 printk(KERN_ERR
481 "multipath: couldn't allocate memory for %s\n",
482 mdname(mddev));
483 goto out_free_conf;
484 }
485
486 {
487 mddev->thread = md_register_thread(multipathd, mddev, "%s_multipath");
488 if (!mddev->thread) {
489 printk(KERN_ERR "multipath: couldn't allocate thread"
490 " for %s\n", mdname(mddev));
491 goto out_free_conf;
492 }
493 }
494
495 printk(KERN_INFO
496 "multipath: array %s active with %d out of %d IO paths\n",
497 mdname(mddev), conf->working_disks, mddev->raid_disks);
498 /*
499 * Ok, everything is just fine now
500 */
Andre Nollf233ea52008-07-21 17:05:22 +1000501 mddev->array_sectors = mddev->size * 2;
NeilBrown7a5febe2005-05-16 21:53:16 -0700502
503 mddev->queue->unplug_fn = multipath_unplug;
NeilBrown0d129222006-10-03 01:15:54 -0700504 mddev->queue->backing_dev_info.congested_fn = multipath_congested;
505 mddev->queue->backing_dev_info.congested_data = mddev;
NeilBrown7a5febe2005-05-16 21:53:16 -0700506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return 0;
508
509out_free_conf:
510 if (conf->pool)
511 mempool_destroy(conf->pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -0700512 kfree(conf->multipaths);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 kfree(conf);
514 mddev->private = NULL;
515out:
516 return -EIO;
517}
518
519
520static int multipath_stop (mddev_t *mddev)
521{
522 multipath_conf_t *conf = mddev_to_conf(mddev);
523
524 md_unregister_thread(mddev->thread);
525 mddev->thread = NULL;
526 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
527 mempool_destroy(conf->pool);
528 kfree(conf->multipaths);
529 kfree(conf);
530 mddev->private = NULL;
531 return 0;
532}
533
NeilBrown2604b702006-01-06 00:20:36 -0800534static struct mdk_personality multipath_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
536 .name = "multipath",
NeilBrown2604b702006-01-06 00:20:36 -0800537 .level = LEVEL_MULTIPATH,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 .owner = THIS_MODULE,
539 .make_request = multipath_make_request,
540 .run = multipath_run,
541 .stop = multipath_stop,
542 .status = multipath_status,
543 .error_handler = multipath_error,
544 .hot_add_disk = multipath_add_disk,
545 .hot_remove_disk= multipath_remove_disk,
546};
547
548static int __init multipath_init (void)
549{
NeilBrown2604b702006-01-06 00:20:36 -0800550 return register_md_personality (&multipath_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
553static void __exit multipath_exit (void)
554{
NeilBrown2604b702006-01-06 00:20:36 -0800555 unregister_md_personality (&multipath_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
558module_init(multipath_init);
559module_exit(multipath_exit);
560MODULE_LICENSE("GPL");
561MODULE_ALIAS("md-personality-7"); /* MULTIPATH */
NeilBrownd9d166c2006-01-06 00:20:51 -0800562MODULE_ALIAS("md-multipath");
NeilBrown2604b702006-01-06 00:20:36 -0800563MODULE_ALIAS("md-level--4");