|
@@ -1478,7 +1478,7 @@ static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
if (argc != 2) {
|
|
if (argc != 2) {
|
|
|
- DMWARN("Unrecognised multipath message received.");
|
|
|
|
|
|
|
+ DMWARN("Invalid multipath message arguments. Expected 2 arguments, got %d.", argc);
|
|
|
goto out;
|
|
goto out;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -1496,7 +1496,7 @@ static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
|
|
|
else if (!strcasecmp(argv[0], "fail_path"))
|
|
else if (!strcasecmp(argv[0], "fail_path"))
|
|
|
action = fail_path;
|
|
action = fail_path;
|
|
|
else {
|
|
else {
|
|
|
- DMWARN("Unrecognised multipath message received.");
|
|
|
|
|
|
|
+ DMWARN("Unrecognised multipath message received: %s", argv[0]);
|
|
|
goto out;
|
|
goto out;
|
|
|
}
|
|
}
|
|
|
|
|
|