aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/dm-mpath.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/md/dm-mpath.c')
-rw-r--r--drivers/md/dm-mpath.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/md/dm-mpath.c b/drivers/md/dm-mpath.c
index 45d9bf14cc48..e81345a1d08f 100644
--- a/drivers/md/dm-mpath.c
+++ b/drivers/md/dm-mpath.c
@@ -1433,6 +1433,11 @@ static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1433 goto out; 1433 goto out;
1434 } 1434 }
1435 1435
1436 if (dm_suspended(ti)) {
1437 r = -EBUSY;
1438 goto out;
1439 }
1440
1436 if (argc == 1) { 1441 if (argc == 1) {
1437 if (!strnicmp(argv[0], MESG_STR("queue_if_no_path"))) { 1442 if (!strnicmp(argv[0], MESG_STR("queue_if_no_path"))) {
1438 r = queue_if_no_path(m, 1, 0); 1443 r = queue_if_no_path(m, 1, 0);