2 * Copyright (C) 2003 Sistina Software Limited.
3 * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
5 * This file is released under the GPL.
8 #include <linux/device-mapper.h>
11 #include "dm-path-selector.h"
12 #include "dm-uevent.h"
14 #include <linux/blkdev.h>
15 #include <linux/ctype.h>
16 #include <linux/init.h>
17 #include <linux/mempool.h>
18 #include <linux/module.h>
19 #include <linux/pagemap.h>
20 #include <linux/slab.h>
21 #include <linux/time.h>
22 #include <linux/workqueue.h>
23 #include <linux/delay.h>
24 #include <scsi/scsi_dh.h>
25 #include <linux/atomic.h>
26 #include <linux/blk-mq.h>
28 #define DM_MSG_PREFIX "multipath"
29 #define DM_PG_INIT_DELAY_MSECS 2000
30 #define DM_PG_INIT_DELAY_DEFAULT ((unsigned) -1)
34 struct list_head list
;
36 struct priority_group
*pg
; /* Owning PG */
37 unsigned fail_count
; /* Cumulative failure count */
40 struct delayed_work activate_path
;
42 bool is_active
:1; /* Path status */
45 #define path_to_pgpath(__pgp) container_of((__pgp), struct pgpath, path)
48 * Paths are grouped into Priority Groups and numbered from 1 upwards.
49 * Each has a path selector which controls which path gets used.
51 struct priority_group
{
52 struct list_head list
;
54 struct multipath
*m
; /* Owning multipath instance */
55 struct path_selector ps
;
57 unsigned pg_num
; /* Reference number */
58 unsigned nr_pgpaths
; /* Number of paths in PG */
59 struct list_head pgpaths
;
61 bool bypassed
:1; /* Temporarily bypass this PG? */
64 /* Multipath context */
66 struct list_head list
;
69 const char *hw_handler_name
;
70 char *hw_handler_params
;
74 unsigned nr_priority_groups
;
75 struct list_head priority_groups
;
77 wait_queue_head_t pg_init_wait
; /* Wait for pg_init completion */
79 struct pgpath
*current_pgpath
;
80 struct priority_group
*current_pg
;
81 struct priority_group
*next_pg
; /* Switch to this PG if set */
83 unsigned long flags
; /* Multipath state flags */
85 unsigned pg_init_retries
; /* Number of times to retry pg_init */
86 unsigned pg_init_delay_msecs
; /* Number of msecs before pg_init retry */
88 atomic_t nr_valid_paths
; /* Total number of usable paths */
89 atomic_t pg_init_in_progress
; /* Only one pg_init allowed at once */
90 atomic_t pg_init_count
; /* Number of times pg_init called */
93 * We must use a mempool of dm_mpath_io structs so that we
94 * can resubmit bios on error.
98 struct mutex work_mutex
;
99 struct work_struct trigger_event
;
103 * Context information attached to each bio we process.
106 struct pgpath
*pgpath
;
110 typedef int (*action_fn
) (struct pgpath
*pgpath
);
112 static struct kmem_cache
*_mpio_cache
;
114 static struct workqueue_struct
*kmultipathd
, *kmpath_handlerd
;
115 static void trigger_event(struct work_struct
*work
);
116 static void activate_path(struct work_struct
*work
);
118 /*-----------------------------------------------
119 * Multipath state flags.
120 *-----------------------------------------------*/
122 #define MPATHF_QUEUE_IO 0 /* Must we queue all I/O? */
123 #define MPATHF_QUEUE_IF_NO_PATH 1 /* Queue I/O if last path fails? */
124 #define MPATHF_SAVED_QUEUE_IF_NO_PATH 2 /* Saved state during suspension */
125 #define MPATHF_RETAIN_ATTACHED_HW_HANDLER 3 /* If there's already a hw_handler present, don't change it. */
126 #define MPATHF_PG_INIT_DISABLED 4 /* pg_init is not currently allowed */
127 #define MPATHF_PG_INIT_REQUIRED 5 /* pg_init needs calling? */
128 #define MPATHF_PG_INIT_DELAY_RETRY 6 /* Delay pg_init retry? */
130 /*-----------------------------------------------
131 * Allocation routines
132 *-----------------------------------------------*/
134 static struct pgpath
*alloc_pgpath(void)
136 struct pgpath
*pgpath
= kzalloc(sizeof(*pgpath
), GFP_KERNEL
);
139 pgpath
->is_active
= true;
140 INIT_DELAYED_WORK(&pgpath
->activate_path
, activate_path
);
146 static void free_pgpath(struct pgpath
*pgpath
)
151 static struct priority_group
*alloc_priority_group(void)
153 struct priority_group
*pg
;
155 pg
= kzalloc(sizeof(*pg
), GFP_KERNEL
);
158 INIT_LIST_HEAD(&pg
->pgpaths
);
163 static void free_pgpaths(struct list_head
*pgpaths
, struct dm_target
*ti
)
165 struct pgpath
*pgpath
, *tmp
;
167 list_for_each_entry_safe(pgpath
, tmp
, pgpaths
, list
) {
168 list_del(&pgpath
->list
);
169 dm_put_device(ti
, pgpath
->path
.dev
);
174 static void free_priority_group(struct priority_group
*pg
,
175 struct dm_target
*ti
)
177 struct path_selector
*ps
= &pg
->ps
;
180 ps
->type
->destroy(ps
);
181 dm_put_path_selector(ps
->type
);
184 free_pgpaths(&pg
->pgpaths
, ti
);
188 static struct multipath
*alloc_multipath(struct dm_target
*ti
, bool use_blk_mq
)
192 m
= kzalloc(sizeof(*m
), GFP_KERNEL
);
194 INIT_LIST_HEAD(&m
->priority_groups
);
195 spin_lock_init(&m
->lock
);
196 set_bit(MPATHF_QUEUE_IO
, &m
->flags
);
197 atomic_set(&m
->nr_valid_paths
, 0);
198 atomic_set(&m
->pg_init_in_progress
, 0);
199 atomic_set(&m
->pg_init_count
, 0);
200 m
->pg_init_delay_msecs
= DM_PG_INIT_DELAY_DEFAULT
;
201 INIT_WORK(&m
->trigger_event
, trigger_event
);
202 init_waitqueue_head(&m
->pg_init_wait
);
203 mutex_init(&m
->work_mutex
);
207 unsigned min_ios
= dm_get_reserved_rq_based_ios();
209 m
->mpio_pool
= mempool_create_slab_pool(min_ios
, _mpio_cache
);
223 static void free_multipath(struct multipath
*m
)
225 struct priority_group
*pg
, *tmp
;
227 list_for_each_entry_safe(pg
, tmp
, &m
->priority_groups
, list
) {
229 free_priority_group(pg
, m
->ti
);
232 kfree(m
->hw_handler_name
);
233 kfree(m
->hw_handler_params
);
234 mempool_destroy(m
->mpio_pool
);
238 static struct dm_mpath_io
*get_mpio(union map_info
*info
)
243 static struct dm_mpath_io
*set_mpio(struct multipath
*m
, union map_info
*info
)
245 struct dm_mpath_io
*mpio
;
248 /* Use blk-mq pdu memory requested via per_io_data_size */
249 mpio
= get_mpio(info
);
250 memset(mpio
, 0, sizeof(*mpio
));
254 mpio
= mempool_alloc(m
->mpio_pool
, GFP_ATOMIC
);
258 memset(mpio
, 0, sizeof(*mpio
));
264 static void clear_request_fn_mpio(struct multipath
*m
, union map_info
*info
)
266 /* Only needed for non blk-mq (.request_fn) multipath */
268 struct dm_mpath_io
*mpio
= info
->ptr
;
271 mempool_free(mpio
, m
->mpio_pool
);
275 /*-----------------------------------------------
277 *-----------------------------------------------*/
279 static int __pg_init_all_paths(struct multipath
*m
)
281 struct pgpath
*pgpath
;
282 unsigned long pg_init_delay
= 0;
284 if (atomic_read(&m
->pg_init_in_progress
) || test_bit(MPATHF_PG_INIT_DISABLED
, &m
->flags
))
287 atomic_inc(&m
->pg_init_count
);
288 clear_bit(MPATHF_PG_INIT_REQUIRED
, &m
->flags
);
290 /* Check here to reset pg_init_required */
294 if (test_bit(MPATHF_PG_INIT_DELAY_RETRY
, &m
->flags
))
295 pg_init_delay
= msecs_to_jiffies(m
->pg_init_delay_msecs
!= DM_PG_INIT_DELAY_DEFAULT
?
296 m
->pg_init_delay_msecs
: DM_PG_INIT_DELAY_MSECS
);
297 list_for_each_entry(pgpath
, &m
->current_pg
->pgpaths
, list
) {
298 /* Skip failed paths */
299 if (!pgpath
->is_active
)
301 if (queue_delayed_work(kmpath_handlerd
, &pgpath
->activate_path
,
303 atomic_inc(&m
->pg_init_in_progress
);
305 return atomic_read(&m
->pg_init_in_progress
);
308 static int pg_init_all_paths(struct multipath
*m
)
313 spin_lock_irqsave(&m
->lock
, flags
);
314 r
= __pg_init_all_paths(m
);
315 spin_unlock_irqrestore(&m
->lock
, flags
);
320 static void __switch_pg(struct multipath
*m
, struct priority_group
*pg
)
324 /* Must we initialise the PG first, and queue I/O till it's ready? */
325 if (m
->hw_handler_name
) {
326 set_bit(MPATHF_PG_INIT_REQUIRED
, &m
->flags
);
327 set_bit(MPATHF_QUEUE_IO
, &m
->flags
);
329 clear_bit(MPATHF_PG_INIT_REQUIRED
, &m
->flags
);
330 clear_bit(MPATHF_QUEUE_IO
, &m
->flags
);
333 atomic_set(&m
->pg_init_count
, 0);
336 static struct pgpath
*choose_path_in_pg(struct multipath
*m
,
337 struct priority_group
*pg
,
341 struct dm_path
*path
;
342 struct pgpath
*pgpath
;
344 path
= pg
->ps
.type
->select_path(&pg
->ps
, nr_bytes
);
346 return ERR_PTR(-ENXIO
);
348 pgpath
= path_to_pgpath(path
);
350 if (unlikely(lockless_dereference(m
->current_pg
) != pg
)) {
351 /* Only update current_pgpath if pg changed */
352 spin_lock_irqsave(&m
->lock
, flags
);
353 m
->current_pgpath
= pgpath
;
355 spin_unlock_irqrestore(&m
->lock
, flags
);
361 static struct pgpath
*choose_pgpath(struct multipath
*m
, size_t nr_bytes
)
364 struct priority_group
*pg
;
365 struct pgpath
*pgpath
;
366 bool bypassed
= true;
368 if (!atomic_read(&m
->nr_valid_paths
)) {
369 clear_bit(MPATHF_QUEUE_IO
, &m
->flags
);
373 /* Were we instructed to switch PG? */
374 if (lockless_dereference(m
->next_pg
)) {
375 spin_lock_irqsave(&m
->lock
, flags
);
378 spin_unlock_irqrestore(&m
->lock
, flags
);
379 goto check_current_pg
;
382 spin_unlock_irqrestore(&m
->lock
, flags
);
383 pgpath
= choose_path_in_pg(m
, pg
, nr_bytes
);
384 if (!IS_ERR_OR_NULL(pgpath
))
388 /* Don't change PG until it has no remaining paths */
390 pg
= lockless_dereference(m
->current_pg
);
392 pgpath
= choose_path_in_pg(m
, pg
, nr_bytes
);
393 if (!IS_ERR_OR_NULL(pgpath
))
398 * Loop through priority groups until we find a valid path.
399 * First time we skip PGs marked 'bypassed'.
400 * Second time we only try the ones we skipped, but set
401 * pg_init_delay_retry so we do not hammer controllers.
404 list_for_each_entry(pg
, &m
->priority_groups
, list
) {
405 if (pg
->bypassed
== bypassed
)
407 pgpath
= choose_path_in_pg(m
, pg
, nr_bytes
);
408 if (!IS_ERR_OR_NULL(pgpath
)) {
410 set_bit(MPATHF_PG_INIT_DELAY_RETRY
, &m
->flags
);
414 } while (bypassed
--);
417 spin_lock_irqsave(&m
->lock
, flags
);
418 m
->current_pgpath
= NULL
;
419 m
->current_pg
= NULL
;
420 spin_unlock_irqrestore(&m
->lock
, flags
);
426 * Check whether bios must be queued in the device-mapper core rather
427 * than here in the target.
429 * If m->queue_if_no_path and m->saved_queue_if_no_path hold the
430 * same value then we are not between multipath_presuspend()
431 * and multipath_resume() calls and we have no need to check
432 * for the DMF_NOFLUSH_SUSPENDING flag.
434 static int must_push_back(struct multipath
*m
)
436 return (test_bit(MPATHF_QUEUE_IF_NO_PATH
, &m
->flags
) ||
437 ((test_bit(MPATHF_QUEUE_IF_NO_PATH
, &m
->flags
) !=
438 test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH
, &m
->flags
)) &&
439 dm_noflush_suspending(m
->ti
)));
443 * Map cloned requests
445 static int __multipath_map(struct dm_target
*ti
, struct request
*clone
,
446 union map_info
*map_context
,
447 struct request
*rq
, struct request
**__clone
)
449 struct multipath
*m
= ti
->private;
450 int r
= DM_MAPIO_REQUEUE
;
451 size_t nr_bytes
= clone
? blk_rq_bytes(clone
) : blk_rq_bytes(rq
);
452 struct pgpath
*pgpath
;
453 struct block_device
*bdev
;
454 struct dm_mpath_io
*mpio
;
456 /* Do we need to select a new pgpath? */
457 pgpath
= lockless_dereference(m
->current_pgpath
);
458 if (!pgpath
|| !test_bit(MPATHF_QUEUE_IO
, &m
->flags
))
459 pgpath
= choose_pgpath(m
, nr_bytes
);
462 if (!must_push_back(m
))
463 r
= -EIO
; /* Failed */
465 } else if (test_bit(MPATHF_QUEUE_IO
, &m
->flags
) ||
466 test_bit(MPATHF_PG_INIT_REQUIRED
, &m
->flags
)) {
467 pg_init_all_paths(m
);
471 mpio
= set_mpio(m
, map_context
);
473 /* ENOMEM, requeue */
476 mpio
->pgpath
= pgpath
;
477 mpio
->nr_bytes
= nr_bytes
;
479 bdev
= pgpath
->path
.dev
->bdev
;
483 * Old request-based interface: allocated clone is passed in.
484 * Used by: .request_fn stacked on .request_fn path(s).
486 clone
->q
= bdev_get_queue(bdev
);
487 clone
->rq_disk
= bdev
->bd_disk
;
488 clone
->cmd_flags
|= REQ_FAILFAST_TRANSPORT
;
491 * blk-mq request-based interface; used by both:
492 * .request_fn stacked on blk-mq path(s) and
493 * blk-mq stacked on blk-mq path(s).
495 *__clone
= blk_mq_alloc_request(bdev_get_queue(bdev
),
496 rq_data_dir(rq
), BLK_MQ_REQ_NOWAIT
);
497 if (IS_ERR(*__clone
)) {
498 /* ENOMEM, requeue */
499 clear_request_fn_mpio(m
, map_context
);
502 (*__clone
)->bio
= (*__clone
)->biotail
= NULL
;
503 (*__clone
)->rq_disk
= bdev
->bd_disk
;
504 (*__clone
)->cmd_flags
|= REQ_FAILFAST_TRANSPORT
;
507 if (pgpath
->pg
->ps
.type
->start_io
)
508 pgpath
->pg
->ps
.type
->start_io(&pgpath
->pg
->ps
,
511 return DM_MAPIO_REMAPPED
;
514 static int multipath_map(struct dm_target
*ti
, struct request
*clone
,
515 union map_info
*map_context
)
517 return __multipath_map(ti
, clone
, map_context
, NULL
, NULL
);
520 static int multipath_clone_and_map(struct dm_target
*ti
, struct request
*rq
,
521 union map_info
*map_context
,
522 struct request
**clone
)
524 return __multipath_map(ti
, NULL
, map_context
, rq
, clone
);
527 static void multipath_release_clone(struct request
*clone
)
529 blk_mq_free_request(clone
);
533 * If we run out of usable paths, should we queue I/O or error it?
535 static int queue_if_no_path(struct multipath
*m
, bool queue_if_no_path
,
540 spin_lock_irqsave(&m
->lock
, flags
);
542 if (save_old_value
) {
543 if (test_bit(MPATHF_QUEUE_IF_NO_PATH
, &m
->flags
))
544 set_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH
, &m
->flags
);
546 clear_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH
, &m
->flags
);
548 if (queue_if_no_path
)
549 set_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH
, &m
->flags
);
551 clear_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH
, &m
->flags
);
553 if (queue_if_no_path
)
554 set_bit(MPATHF_QUEUE_IF_NO_PATH
, &m
->flags
);
556 clear_bit(MPATHF_QUEUE_IF_NO_PATH
, &m
->flags
);
558 spin_unlock_irqrestore(&m
->lock
, flags
);
560 if (!queue_if_no_path
)
561 dm_table_run_md_queue_async(m
->ti
->table
);
567 * An event is triggered whenever a path is taken out of use.
568 * Includes path failure and PG bypass.
570 static void trigger_event(struct work_struct
*work
)
572 struct multipath
*m
=
573 container_of(work
, struct multipath
, trigger_event
);
575 dm_table_event(m
->ti
->table
);
578 /*-----------------------------------------------------------------
579 * Constructor/argument parsing:
580 * <#multipath feature args> [<arg>]*
581 * <#hw_handler args> [hw_handler [<arg>]*]
583 * <initial priority group>
584 * [<selector> <#selector args> [<arg>]*
585 * <#paths> <#per-path selector args>
586 * [<path> [<arg>]* ]+ ]+
587 *---------------------------------------------------------------*/
588 static int parse_path_selector(struct dm_arg_set
*as
, struct priority_group
*pg
,
589 struct dm_target
*ti
)
592 struct path_selector_type
*pst
;
595 static struct dm_arg _args
[] = {
596 {0, 1024, "invalid number of path selector args"},
599 pst
= dm_get_path_selector(dm_shift_arg(as
));
601 ti
->error
= "unknown path selector type";
605 r
= dm_read_arg_group(_args
, as
, &ps_argc
, &ti
->error
);
607 dm_put_path_selector(pst
);
611 r
= pst
->create(&pg
->ps
, ps_argc
, as
->argv
);
613 dm_put_path_selector(pst
);
614 ti
->error
= "path selector constructor failed";
619 dm_consume_args(as
, ps_argc
);
624 static struct pgpath
*parse_path(struct dm_arg_set
*as
, struct path_selector
*ps
,
625 struct dm_target
*ti
)
629 struct multipath
*m
= ti
->private;
630 struct request_queue
*q
= NULL
;
631 const char *attached_handler_name
;
633 /* we need at least a path arg */
635 ti
->error
= "no device given";
636 return ERR_PTR(-EINVAL
);
641 return ERR_PTR(-ENOMEM
);
643 r
= dm_get_device(ti
, dm_shift_arg(as
), dm_table_get_mode(ti
->table
),
646 ti
->error
= "error getting device";
650 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER
, &m
->flags
) || m
->hw_handler_name
)
651 q
= bdev_get_queue(p
->path
.dev
->bdev
);
653 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER
, &m
->flags
)) {
655 attached_handler_name
= scsi_dh_attached_handler_name(q
, GFP_KERNEL
);
656 if (attached_handler_name
) {
658 * Reset hw_handler_name to match the attached handler
659 * and clear any hw_handler_params associated with the
662 * NB. This modifies the table line to show the actual
663 * handler instead of the original table passed in.
665 kfree(m
->hw_handler_name
);
666 m
->hw_handler_name
= attached_handler_name
;
668 kfree(m
->hw_handler_params
);
669 m
->hw_handler_params
= NULL
;
673 if (m
->hw_handler_name
) {
674 r
= scsi_dh_attach(q
, m
->hw_handler_name
);
676 char b
[BDEVNAME_SIZE
];
678 printk(KERN_INFO
"dm-mpath: retaining handler on device %s\n",
679 bdevname(p
->path
.dev
->bdev
, b
));
683 ti
->error
= "error attaching hardware handler";
684 dm_put_device(ti
, p
->path
.dev
);
688 if (m
->hw_handler_params
) {
689 r
= scsi_dh_set_params(q
, m
->hw_handler_params
);
691 ti
->error
= "unable to set hardware "
692 "handler parameters";
693 dm_put_device(ti
, p
->path
.dev
);
699 r
= ps
->type
->add_path(ps
, &p
->path
, as
->argc
, as
->argv
, &ti
->error
);
701 dm_put_device(ti
, p
->path
.dev
);
712 static struct priority_group
*parse_priority_group(struct dm_arg_set
*as
,
715 static struct dm_arg _args
[] = {
716 {1, 1024, "invalid number of paths"},
717 {0, 1024, "invalid number of selector args"}
721 unsigned i
, nr_selector_args
, nr_args
;
722 struct priority_group
*pg
;
723 struct dm_target
*ti
= m
->ti
;
727 ti
->error
= "not enough priority group arguments";
728 return ERR_PTR(-EINVAL
);
731 pg
= alloc_priority_group();
733 ti
->error
= "couldn't allocate priority group";
734 return ERR_PTR(-ENOMEM
);
738 r
= parse_path_selector(as
, pg
, ti
);
745 r
= dm_read_arg(_args
, as
, &pg
->nr_pgpaths
, &ti
->error
);
749 r
= dm_read_arg(_args
+ 1, as
, &nr_selector_args
, &ti
->error
);
753 nr_args
= 1 + nr_selector_args
;
754 for (i
= 0; i
< pg
->nr_pgpaths
; i
++) {
755 struct pgpath
*pgpath
;
756 struct dm_arg_set path_args
;
758 if (as
->argc
< nr_args
) {
759 ti
->error
= "not enough path parameters";
764 path_args
.argc
= nr_args
;
765 path_args
.argv
= as
->argv
;
767 pgpath
= parse_path(&path_args
, &pg
->ps
, ti
);
768 if (IS_ERR(pgpath
)) {
774 list_add_tail(&pgpath
->list
, &pg
->pgpaths
);
775 dm_consume_args(as
, nr_args
);
781 free_priority_group(pg
, ti
);
785 static int parse_hw_handler(struct dm_arg_set
*as
, struct multipath
*m
)
789 struct dm_target
*ti
= m
->ti
;
791 static struct dm_arg _args
[] = {
792 {0, 1024, "invalid number of hardware handler args"},
795 if (dm_read_arg_group(_args
, as
, &hw_argc
, &ti
->error
))
801 m
->hw_handler_name
= kstrdup(dm_shift_arg(as
), GFP_KERNEL
);
807 for (i
= 0; i
<= hw_argc
- 2; i
++)
808 len
+= strlen(as
->argv
[i
]) + 1;
809 p
= m
->hw_handler_params
= kzalloc(len
, GFP_KERNEL
);
811 ti
->error
= "memory allocation failed";
815 j
= sprintf(p
, "%d", hw_argc
- 1);
816 for (i
= 0, p
+=j
+1; i
<= hw_argc
- 2; i
++, p
+=j
+1)
817 j
= sprintf(p
, "%s", as
->argv
[i
]);
819 dm_consume_args(as
, hw_argc
- 1);
823 kfree(m
->hw_handler_name
);
824 m
->hw_handler_name
= NULL
;
828 static int parse_features(struct dm_arg_set
*as
, struct multipath
*m
)
832 struct dm_target
*ti
= m
->ti
;
833 const char *arg_name
;
835 static struct dm_arg _args
[] = {
836 {0, 6, "invalid number of feature args"},
837 {1, 50, "pg_init_retries must be between 1 and 50"},
838 {0, 60000, "pg_init_delay_msecs must be between 0 and 60000"},
841 r
= dm_read_arg_group(_args
, as
, &argc
, &ti
->error
);
849 arg_name
= dm_shift_arg(as
);
852 if (!strcasecmp(arg_name
, "queue_if_no_path")) {
853 r
= queue_if_no_path(m
, true, false);
857 if (!strcasecmp(arg_name
, "retain_attached_hw_handler")) {
858 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER
, &m
->flags
);
862 if (!strcasecmp(arg_name
, "pg_init_retries") &&
864 r
= dm_read_arg(_args
+ 1, as
, &m
->pg_init_retries
, &ti
->error
);
869 if (!strcasecmp(arg_name
, "pg_init_delay_msecs") &&
871 r
= dm_read_arg(_args
+ 2, as
, &m
->pg_init_delay_msecs
, &ti
->error
);
876 ti
->error
= "Unrecognised multipath feature request";
878 } while (argc
&& !r
);
883 static int multipath_ctr(struct dm_target
*ti
, unsigned int argc
,
886 /* target arguments */
887 static struct dm_arg _args
[] = {
888 {0, 1024, "invalid number of priority groups"},
889 {0, 1024, "invalid initial priority group number"},
894 struct dm_arg_set as
;
895 unsigned pg_count
= 0;
896 unsigned next_pg_num
;
897 bool use_blk_mq
= dm_use_blk_mq(dm_table_get_md(ti
->table
));
902 m
= alloc_multipath(ti
, use_blk_mq
);
904 ti
->error
= "can't allocate multipath";
908 r
= parse_features(&as
, m
);
912 r
= parse_hw_handler(&as
, m
);
916 r
= dm_read_arg(_args
, &as
, &m
->nr_priority_groups
, &ti
->error
);
920 r
= dm_read_arg(_args
+ 1, &as
, &next_pg_num
, &ti
->error
);
924 if ((!m
->nr_priority_groups
&& next_pg_num
) ||
925 (m
->nr_priority_groups
&& !next_pg_num
)) {
926 ti
->error
= "invalid initial priority group";
931 /* parse the priority groups */
933 struct priority_group
*pg
;
934 unsigned nr_valid_paths
= atomic_read(&m
->nr_valid_paths
);
936 pg
= parse_priority_group(&as
, m
);
942 nr_valid_paths
+= pg
->nr_pgpaths
;
943 atomic_set(&m
->nr_valid_paths
, nr_valid_paths
);
945 list_add_tail(&pg
->list
, &m
->priority_groups
);
947 pg
->pg_num
= pg_count
;
952 if (pg_count
!= m
->nr_priority_groups
) {
953 ti
->error
= "priority group count mismatch";
958 ti
->num_flush_bios
= 1;
959 ti
->num_discard_bios
= 1;
960 ti
->num_write_same_bios
= 1;
962 ti
->per_io_data_size
= sizeof(struct dm_mpath_io
);
971 static void multipath_wait_for_pg_init_completion(struct multipath
*m
)
973 DECLARE_WAITQUEUE(wait
, current
);
975 add_wait_queue(&m
->pg_init_wait
, &wait
);
978 set_current_state(TASK_UNINTERRUPTIBLE
);
980 if (!atomic_read(&m
->pg_init_in_progress
))
985 set_current_state(TASK_RUNNING
);
987 remove_wait_queue(&m
->pg_init_wait
, &wait
);
990 static void flush_multipath_work(struct multipath
*m
)
992 set_bit(MPATHF_PG_INIT_DISABLED
, &m
->flags
);
993 smp_mb__after_atomic();
995 flush_workqueue(kmpath_handlerd
);
996 multipath_wait_for_pg_init_completion(m
);
997 flush_workqueue(kmultipathd
);
998 flush_work(&m
->trigger_event
);
1000 clear_bit(MPATHF_PG_INIT_DISABLED
, &m
->flags
);
1001 smp_mb__after_atomic();
1004 static void multipath_dtr(struct dm_target
*ti
)
1006 struct multipath
*m
= ti
->private;
1008 flush_multipath_work(m
);
1013 * Take a path out of use.
1015 static int fail_path(struct pgpath
*pgpath
)
1017 unsigned long flags
;
1018 struct multipath
*m
= pgpath
->pg
->m
;
1020 spin_lock_irqsave(&m
->lock
, flags
);
1022 if (!pgpath
->is_active
)
1025 DMWARN("Failing path %s.", pgpath
->path
.dev
->name
);
1027 pgpath
->pg
->ps
.type
->fail_path(&pgpath
->pg
->ps
, &pgpath
->path
);
1028 pgpath
->is_active
= false;
1029 pgpath
->fail_count
++;
1031 atomic_dec(&m
->nr_valid_paths
);
1033 if (pgpath
== m
->current_pgpath
)
1034 m
->current_pgpath
= NULL
;
1036 dm_path_uevent(DM_UEVENT_PATH_FAILED
, m
->ti
,
1037 pgpath
->path
.dev
->name
, atomic_read(&m
->nr_valid_paths
));
1039 schedule_work(&m
->trigger_event
);
1042 spin_unlock_irqrestore(&m
->lock
, flags
);
1048 * Reinstate a previously-failed path
1050 static int reinstate_path(struct pgpath
*pgpath
)
1052 int r
= 0, run_queue
= 0;
1053 unsigned long flags
;
1054 struct multipath
*m
= pgpath
->pg
->m
;
1055 unsigned nr_valid_paths
;
1057 spin_lock_irqsave(&m
->lock
, flags
);
1059 if (pgpath
->is_active
)
1062 DMWARN("Reinstating path %s.", pgpath
->path
.dev
->name
);
1064 r
= pgpath
->pg
->ps
.type
->reinstate_path(&pgpath
->pg
->ps
, &pgpath
->path
);
1068 pgpath
->is_active
= true;
1070 nr_valid_paths
= atomic_inc_return(&m
->nr_valid_paths
);
1071 if (nr_valid_paths
== 1) {
1072 m
->current_pgpath
= NULL
;
1074 } else if (m
->hw_handler_name
&& (m
->current_pg
== pgpath
->pg
)) {
1075 if (queue_work(kmpath_handlerd
, &pgpath
->activate_path
.work
))
1076 atomic_inc(&m
->pg_init_in_progress
);
1079 dm_path_uevent(DM_UEVENT_PATH_REINSTATED
, m
->ti
,
1080 pgpath
->path
.dev
->name
, nr_valid_paths
);
1082 schedule_work(&m
->trigger_event
);
1085 spin_unlock_irqrestore(&m
->lock
, flags
);
1087 dm_table_run_md_queue_async(m
->ti
->table
);
1093 * Fail or reinstate all paths that match the provided struct dm_dev.
1095 static int action_dev(struct multipath
*m
, struct dm_dev
*dev
,
1099 struct pgpath
*pgpath
;
1100 struct priority_group
*pg
;
1102 list_for_each_entry(pg
, &m
->priority_groups
, list
) {
1103 list_for_each_entry(pgpath
, &pg
->pgpaths
, list
) {
1104 if (pgpath
->path
.dev
== dev
)
1113 * Temporarily try to avoid having to use the specified PG
1115 static void bypass_pg(struct multipath
*m
, struct priority_group
*pg
,
1118 unsigned long flags
;
1120 spin_lock_irqsave(&m
->lock
, flags
);
1122 pg
->bypassed
= bypassed
;
1123 m
->current_pgpath
= NULL
;
1124 m
->current_pg
= NULL
;
1126 spin_unlock_irqrestore(&m
->lock
, flags
);
1128 schedule_work(&m
->trigger_event
);
1132 * Switch to using the specified PG from the next I/O that gets mapped
1134 static int switch_pg_num(struct multipath
*m
, const char *pgstr
)
1136 struct priority_group
*pg
;
1138 unsigned long flags
;
1141 if (!pgstr
|| (sscanf(pgstr
, "%u%c", &pgnum
, &dummy
) != 1) || !pgnum
||
1142 (pgnum
> m
->nr_priority_groups
)) {
1143 DMWARN("invalid PG number supplied to switch_pg_num");
1147 spin_lock_irqsave(&m
->lock
, flags
);
1148 list_for_each_entry(pg
, &m
->priority_groups
, list
) {
1149 pg
->bypassed
= false;
1153 m
->current_pgpath
= NULL
;
1154 m
->current_pg
= NULL
;
1157 spin_unlock_irqrestore(&m
->lock
, flags
);
1159 schedule_work(&m
->trigger_event
);
1164 * Set/clear bypassed status of a PG.
1165 * PGs are numbered upwards from 1 in the order they were declared.
1167 static int bypass_pg_num(struct multipath
*m
, const char *pgstr
, bool bypassed
)
1169 struct priority_group
*pg
;
1173 if (!pgstr
|| (sscanf(pgstr
, "%u%c", &pgnum
, &dummy
) != 1) || !pgnum
||
1174 (pgnum
> m
->nr_priority_groups
)) {
1175 DMWARN("invalid PG number supplied to bypass_pg");
1179 list_for_each_entry(pg
, &m
->priority_groups
, list
) {
1184 bypass_pg(m
, pg
, bypassed
);
1189 * Should we retry pg_init immediately?
1191 static bool pg_init_limit_reached(struct multipath
*m
, struct pgpath
*pgpath
)
1193 unsigned long flags
;
1194 bool limit_reached
= false;
1196 spin_lock_irqsave(&m
->lock
, flags
);
1198 if (atomic_read(&m
->pg_init_count
) <= m
->pg_init_retries
&&
1199 !test_bit(MPATHF_PG_INIT_DISABLED
, &m
->flags
))
1200 set_bit(MPATHF_PG_INIT_REQUIRED
, &m
->flags
);
1202 limit_reached
= true;
1204 spin_unlock_irqrestore(&m
->lock
, flags
);
1206 return limit_reached
;
1209 static void pg_init_done(void *data
, int errors
)
1211 struct pgpath
*pgpath
= data
;
1212 struct priority_group
*pg
= pgpath
->pg
;
1213 struct multipath
*m
= pg
->m
;
1214 unsigned long flags
;
1215 bool delay_retry
= false;
1217 /* device or driver problems */
1222 if (!m
->hw_handler_name
) {
1226 DMERR("Could not failover the device: Handler scsi_dh_%s "
1227 "Error %d.", m
->hw_handler_name
, errors
);
1229 * Fail path for now, so we do not ping pong
1233 case SCSI_DH_DEV_TEMP_BUSY
:
1235 * Probably doing something like FW upgrade on the
1236 * controller so try the other pg.
1238 bypass_pg(m
, pg
, true);
1241 /* Wait before retrying. */
1243 case SCSI_DH_IMM_RETRY
:
1244 case SCSI_DH_RES_TEMP_UNAVAIL
:
1245 if (pg_init_limit_reached(m
, pgpath
))
1249 case SCSI_DH_DEV_OFFLINED
:
1252 * We probably do not want to fail the path for a device
1253 * error, but this is what the old dm did. In future
1254 * patches we can do more advanced handling.
1259 spin_lock_irqsave(&m
->lock
, flags
);
1261 if (pgpath
== m
->current_pgpath
) {
1262 DMERR("Could not failover device. Error %d.", errors
);
1263 m
->current_pgpath
= NULL
;
1264 m
->current_pg
= NULL
;
1266 } else if (!test_bit(MPATHF_PG_INIT_REQUIRED
, &m
->flags
))
1267 pg
->bypassed
= false;
1269 if (atomic_dec_return(&m
->pg_init_in_progress
) > 0)
1270 /* Activations of other paths are still on going */
1273 if (test_bit(MPATHF_PG_INIT_REQUIRED
, &m
->flags
)) {
1275 set_bit(MPATHF_PG_INIT_DELAY_RETRY
, &m
->flags
);
1277 clear_bit(MPATHF_PG_INIT_DELAY_RETRY
, &m
->flags
);
1279 if (__pg_init_all_paths(m
))
1282 clear_bit(MPATHF_QUEUE_IO
, &m
->flags
);
1285 * Wake up any thread waiting to suspend.
1287 wake_up(&m
->pg_init_wait
);
1290 spin_unlock_irqrestore(&m
->lock
, flags
);
1293 static void activate_path(struct work_struct
*work
)
1295 struct pgpath
*pgpath
=
1296 container_of(work
, struct pgpath
, activate_path
.work
);
1298 if (pgpath
->is_active
)
1299 scsi_dh_activate(bdev_get_queue(pgpath
->path
.dev
->bdev
),
1300 pg_init_done
, pgpath
);
1302 pg_init_done(pgpath
, SCSI_DH_DEV_OFFLINED
);
1305 static int noretry_error(int error
)
1316 /* Anything else could be a path failure, so should be retried */
1323 static int do_end_io(struct multipath
*m
, struct request
*clone
,
1324 int error
, struct dm_mpath_io
*mpio
)
1327 * We don't queue any clone request inside the multipath target
1328 * during end I/O handling, since those clone requests don't have
1329 * bio clones. If we queue them inside the multipath target,
1330 * we need to make bio clones, that requires memory allocation.
1331 * (See drivers/md/dm.c:end_clone_bio() about why the clone requests
1332 * don't have bio clones.)
1333 * Instead of queueing the clone request here, we queue the original
1334 * request into dm core, which will remake a clone request and
1335 * clone bios for it and resubmit it later.
1337 int r
= DM_ENDIO_REQUEUE
;
1339 if (!error
&& !clone
->errors
)
1340 return 0; /* I/O complete */
1342 if (noretry_error(error
))
1346 fail_path(mpio
->pgpath
);
1348 if (!atomic_read(&m
->nr_valid_paths
)) {
1349 if (!test_bit(MPATHF_QUEUE_IF_NO_PATH
, &m
->flags
)) {
1350 if (!must_push_back(m
))
1353 if (error
== -EBADE
)
1361 static int multipath_end_io(struct dm_target
*ti
, struct request
*clone
,
1362 int error
, union map_info
*map_context
)
1364 struct multipath
*m
= ti
->private;
1365 struct dm_mpath_io
*mpio
= get_mpio(map_context
);
1366 struct pgpath
*pgpath
;
1367 struct path_selector
*ps
;
1372 r
= do_end_io(m
, clone
, error
, mpio
);
1373 pgpath
= mpio
->pgpath
;
1375 ps
= &pgpath
->pg
->ps
;
1376 if (ps
->type
->end_io
)
1377 ps
->type
->end_io(ps
, &pgpath
->path
, mpio
->nr_bytes
);
1379 clear_request_fn_mpio(m
, map_context
);
1385 * Suspend can't complete until all the I/O is processed so if
1386 * the last path fails we must error any remaining I/O.
1387 * Note that if the freeze_bdev fails while suspending, the
1388 * queue_if_no_path state is lost - userspace should reset it.
1390 static void multipath_presuspend(struct dm_target
*ti
)
1392 struct multipath
*m
= ti
->private;
1394 queue_if_no_path(m
, false, true);
1397 static void multipath_postsuspend(struct dm_target
*ti
)
1399 struct multipath
*m
= ti
->private;
1401 mutex_lock(&m
->work_mutex
);
1402 flush_multipath_work(m
);
1403 mutex_unlock(&m
->work_mutex
);
1407 * Restore the queue_if_no_path setting.
1409 static void multipath_resume(struct dm_target
*ti
)
1411 struct multipath
*m
= ti
->private;
1413 if (test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH
, &m
->flags
))
1414 set_bit(MPATHF_QUEUE_IF_NO_PATH
, &m
->flags
);
1416 clear_bit(MPATHF_QUEUE_IF_NO_PATH
, &m
->flags
);
1417 smp_mb__after_atomic();
1421 * Info output has the following format:
1422 * num_multipath_feature_args [multipath_feature_args]*
1423 * num_handler_status_args [handler_status_args]*
1424 * num_groups init_group_number
1425 * [A|D|E num_ps_status_args [ps_status_args]*
1426 * num_paths num_selector_args
1427 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1429 * Table output has the following format (identical to the constructor string):
1430 * num_feature_args [features_args]*
1431 * num_handler_args hw_handler [hw_handler_args]*
1432 * num_groups init_group_number
1433 * [priority selector-name num_ps_args [ps_args]*
1434 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1436 static void multipath_status(struct dm_target
*ti
, status_type_t type
,
1437 unsigned status_flags
, char *result
, unsigned maxlen
)
1440 unsigned long flags
;
1441 struct multipath
*m
= ti
->private;
1442 struct priority_group
*pg
;
1447 spin_lock_irqsave(&m
->lock
, flags
);
1450 if (type
== STATUSTYPE_INFO
)
1451 DMEMIT("2 %u %u ", test_bit(MPATHF_QUEUE_IO
, &m
->flags
),
1452 atomic_read(&m
->pg_init_count
));
1454 DMEMIT("%u ", test_bit(MPATHF_QUEUE_IF_NO_PATH
, &m
->flags
) +
1455 (m
->pg_init_retries
> 0) * 2 +
1456 (m
->pg_init_delay_msecs
!= DM_PG_INIT_DELAY_DEFAULT
) * 2 +
1457 test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER
, &m
->flags
));
1458 if (test_bit(MPATHF_QUEUE_IF_NO_PATH
, &m
->flags
))
1459 DMEMIT("queue_if_no_path ");
1460 if (m
->pg_init_retries
)
1461 DMEMIT("pg_init_retries %u ", m
->pg_init_retries
);
1462 if (m
->pg_init_delay_msecs
!= DM_PG_INIT_DELAY_DEFAULT
)
1463 DMEMIT("pg_init_delay_msecs %u ", m
->pg_init_delay_msecs
);
1464 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER
, &m
->flags
))
1465 DMEMIT("retain_attached_hw_handler ");
1468 if (!m
->hw_handler_name
|| type
== STATUSTYPE_INFO
)
1471 DMEMIT("1 %s ", m
->hw_handler_name
);
1473 DMEMIT("%u ", m
->nr_priority_groups
);
1476 pg_num
= m
->next_pg
->pg_num
;
1477 else if (m
->current_pg
)
1478 pg_num
= m
->current_pg
->pg_num
;
1480 pg_num
= (m
->nr_priority_groups
? 1 : 0);
1482 DMEMIT("%u ", pg_num
);
1485 case STATUSTYPE_INFO
:
1486 list_for_each_entry(pg
, &m
->priority_groups
, list
) {
1488 state
= 'D'; /* Disabled */
1489 else if (pg
== m
->current_pg
)
1490 state
= 'A'; /* Currently Active */
1492 state
= 'E'; /* Enabled */
1494 DMEMIT("%c ", state
);
1496 if (pg
->ps
.type
->status
)
1497 sz
+= pg
->ps
.type
->status(&pg
->ps
, NULL
, type
,
1503 DMEMIT("%u %u ", pg
->nr_pgpaths
,
1504 pg
->ps
.type
->info_args
);
1506 list_for_each_entry(p
, &pg
->pgpaths
, list
) {
1507 DMEMIT("%s %s %u ", p
->path
.dev
->name
,
1508 p
->is_active
? "A" : "F",
1510 if (pg
->ps
.type
->status
)
1511 sz
+= pg
->ps
.type
->status(&pg
->ps
,
1512 &p
->path
, type
, result
+ sz
,
1518 case STATUSTYPE_TABLE
:
1519 list_for_each_entry(pg
, &m
->priority_groups
, list
) {
1520 DMEMIT("%s ", pg
->ps
.type
->name
);
1522 if (pg
->ps
.type
->status
)
1523 sz
+= pg
->ps
.type
->status(&pg
->ps
, NULL
, type
,
1529 DMEMIT("%u %u ", pg
->nr_pgpaths
,
1530 pg
->ps
.type
->table_args
);
1532 list_for_each_entry(p
, &pg
->pgpaths
, list
) {
1533 DMEMIT("%s ", p
->path
.dev
->name
);
1534 if (pg
->ps
.type
->status
)
1535 sz
+= pg
->ps
.type
->status(&pg
->ps
,
1536 &p
->path
, type
, result
+ sz
,
1543 spin_unlock_irqrestore(&m
->lock
, flags
);
1546 static int multipath_message(struct dm_target
*ti
, unsigned argc
, char **argv
)
1550 struct multipath
*m
= ti
->private;
1553 mutex_lock(&m
->work_mutex
);
1555 if (dm_suspended(ti
)) {
1561 if (!strcasecmp(argv
[0], "queue_if_no_path")) {
1562 r
= queue_if_no_path(m
, true, false);
1564 } else if (!strcasecmp(argv
[0], "fail_if_no_path")) {
1565 r
= queue_if_no_path(m
, false, false);
1571 DMWARN("Invalid multipath message arguments. Expected 2 arguments, got %d.", argc
);
1575 if (!strcasecmp(argv
[0], "disable_group")) {
1576 r
= bypass_pg_num(m
, argv
[1], true);
1578 } else if (!strcasecmp(argv
[0], "enable_group")) {
1579 r
= bypass_pg_num(m
, argv
[1], false);
1581 } else if (!strcasecmp(argv
[0], "switch_group")) {
1582 r
= switch_pg_num(m
, argv
[1]);
1584 } else if (!strcasecmp(argv
[0], "reinstate_path"))
1585 action
= reinstate_path
;
1586 else if (!strcasecmp(argv
[0], "fail_path"))
1589 DMWARN("Unrecognised multipath message received: %s", argv
[0]);
1593 r
= dm_get_device(ti
, argv
[1], dm_table_get_mode(ti
->table
), &dev
);
1595 DMWARN("message: error getting device %s",
1600 r
= action_dev(m
, dev
, action
);
1602 dm_put_device(ti
, dev
);
1605 mutex_unlock(&m
->work_mutex
);
1609 static int multipath_prepare_ioctl(struct dm_target
*ti
,
1610 struct block_device
**bdev
, fmode_t
*mode
)
1612 struct multipath
*m
= ti
->private;
1613 struct pgpath
*current_pgpath
;
1616 current_pgpath
= lockless_dereference(m
->current_pgpath
);
1617 if (!current_pgpath
)
1618 current_pgpath
= choose_pgpath(m
, 0);
1620 if (current_pgpath
) {
1621 if (!test_bit(MPATHF_QUEUE_IO
, &m
->flags
)) {
1622 *bdev
= current_pgpath
->path
.dev
->bdev
;
1623 *mode
= current_pgpath
->path
.dev
->mode
;
1626 /* pg_init has not started or completed */
1630 /* No path is available */
1631 if (test_bit(MPATHF_QUEUE_IF_NO_PATH
, &m
->flags
))
1637 if (r
== -ENOTCONN
) {
1638 if (!lockless_dereference(m
->current_pg
)) {
1639 /* Path status changed, redo selection */
1640 (void) choose_pgpath(m
, 0);
1642 if (test_bit(MPATHF_PG_INIT_REQUIRED
, &m
->flags
))
1643 pg_init_all_paths(m
);
1644 dm_table_run_md_queue_async(m
->ti
->table
);
1648 * Only pass ioctls through if the device sizes match exactly.
1650 if (!r
&& ti
->len
!= i_size_read((*bdev
)->bd_inode
) >> SECTOR_SHIFT
)
1655 static int multipath_iterate_devices(struct dm_target
*ti
,
1656 iterate_devices_callout_fn fn
, void *data
)
1658 struct multipath
*m
= ti
->private;
1659 struct priority_group
*pg
;
1663 list_for_each_entry(pg
, &m
->priority_groups
, list
) {
1664 list_for_each_entry(p
, &pg
->pgpaths
, list
) {
1665 ret
= fn(ti
, p
->path
.dev
, ti
->begin
, ti
->len
, data
);
1675 static int pgpath_busy(struct pgpath
*pgpath
)
1677 struct request_queue
*q
= bdev_get_queue(pgpath
->path
.dev
->bdev
);
1679 return blk_lld_busy(q
);
1683 * We return "busy", only when we can map I/Os but underlying devices
1684 * are busy (so even if we map I/Os now, the I/Os will wait on
1685 * the underlying queue).
1686 * In other words, if we want to kill I/Os or queue them inside us
1687 * due to map unavailability, we don't return "busy". Otherwise,
1688 * dm core won't give us the I/Os and we can't do what we want.
1690 static int multipath_busy(struct dm_target
*ti
)
1692 bool busy
= false, has_active
= false;
1693 struct multipath
*m
= ti
->private;
1694 struct priority_group
*pg
, *next_pg
;
1695 struct pgpath
*pgpath
;
1697 /* pg_init in progress or no paths available */
1698 if (atomic_read(&m
->pg_init_in_progress
) ||
1699 (!atomic_read(&m
->nr_valid_paths
) && test_bit(MPATHF_QUEUE_IF_NO_PATH
, &m
->flags
)))
1702 /* Guess which priority_group will be used at next mapping time */
1703 pg
= lockless_dereference(m
->current_pg
);
1704 next_pg
= lockless_dereference(m
->next_pg
);
1705 if (unlikely(!lockless_dereference(m
->current_pgpath
) && next_pg
))
1710 * We don't know which pg will be used at next mapping time.
1711 * We don't call choose_pgpath() here to avoid to trigger
1712 * pg_init just by busy checking.
1713 * So we don't know whether underlying devices we will be using
1714 * at next mapping time are busy or not. Just try mapping.
1720 * If there is one non-busy active path at least, the path selector
1721 * will be able to select it. So we consider such a pg as not busy.
1724 list_for_each_entry(pgpath
, &pg
->pgpaths
, list
) {
1725 if (pgpath
->is_active
) {
1727 if (!pgpath_busy(pgpath
)) {
1736 * No active path in this pg, so this pg won't be used and
1737 * the current_pg will be changed at next mapping time.
1738 * We need to try mapping to determine it.
1746 /*-----------------------------------------------------------------
1748 *---------------------------------------------------------------*/
1749 static struct target_type multipath_target
= {
1750 .name
= "multipath",
1751 .version
= {1, 11, 0},
1752 .features
= DM_TARGET_SINGLETON
| DM_TARGET_IMMUTABLE
,
1753 .module
= THIS_MODULE
,
1754 .ctr
= multipath_ctr
,
1755 .dtr
= multipath_dtr
,
1756 .map_rq
= multipath_map
,
1757 .clone_and_map_rq
= multipath_clone_and_map
,
1758 .release_clone_rq
= multipath_release_clone
,
1759 .rq_end_io
= multipath_end_io
,
1760 .presuspend
= multipath_presuspend
,
1761 .postsuspend
= multipath_postsuspend
,
1762 .resume
= multipath_resume
,
1763 .status
= multipath_status
,
1764 .message
= multipath_message
,
1765 .prepare_ioctl
= multipath_prepare_ioctl
,
1766 .iterate_devices
= multipath_iterate_devices
,
1767 .busy
= multipath_busy
,
1770 static int __init
dm_multipath_init(void)
1774 /* allocate a slab for the dm_ios */
1775 _mpio_cache
= KMEM_CACHE(dm_mpath_io
, 0);
1779 r
= dm_register_target(&multipath_target
);
1781 DMERR("register failed %d", r
);
1783 goto bad_register_target
;
1786 kmultipathd
= alloc_workqueue("kmpathd", WQ_MEM_RECLAIM
, 0);
1788 DMERR("failed to create workqueue kmpathd");
1790 goto bad_alloc_kmultipathd
;
1794 * A separate workqueue is used to handle the device handlers
1795 * to avoid overloading existing workqueue. Overloading the
1796 * old workqueue would also create a bottleneck in the
1797 * path of the storage hardware device activation.
1799 kmpath_handlerd
= alloc_ordered_workqueue("kmpath_handlerd",
1801 if (!kmpath_handlerd
) {
1802 DMERR("failed to create workqueue kmpath_handlerd");
1804 goto bad_alloc_kmpath_handlerd
;
1807 DMINFO("version %u.%u.%u loaded",
1808 multipath_target
.version
[0], multipath_target
.version
[1],
1809 multipath_target
.version
[2]);
1813 bad_alloc_kmpath_handlerd
:
1814 destroy_workqueue(kmultipathd
);
1815 bad_alloc_kmultipathd
:
1816 dm_unregister_target(&multipath_target
);
1817 bad_register_target
:
1818 kmem_cache_destroy(_mpio_cache
);
1823 static void __exit
dm_multipath_exit(void)
1825 destroy_workqueue(kmpath_handlerd
);
1826 destroy_workqueue(kmultipathd
);
1828 dm_unregister_target(&multipath_target
);
1829 kmem_cache_destroy(_mpio_cache
);
1832 module_init(dm_multipath_init
);
1833 module_exit(dm_multipath_exit
);
1835 MODULE_DESCRIPTION(DM_NAME
" multipath target");
1836 MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
1837 MODULE_LICENSE("GPL");