Unify error message.

Provide the same error message for the same error that can occur in Grow.c and super-intel.c.

Signed-off-by: Lukasz Florczak <lukasz.florczak@linux.intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
This commit is contained in:
Lukasz Florczak 2022-03-15 09:30:30 +01:00 committed by Jes Sorensen
parent e30ca26074
commit f1cc8ab9ab
2 changed files with 4 additions and 4 deletions

4
Grow.c
View File

@ -1001,8 +1001,8 @@ int remove_disks_for_takeover(struct supertype *st,
rv = 1;
sysfs_free(arrays);
if (rv) {
pr_err("Error. Cannot perform operation on /dev/%s\n", st->devnm);
pr_err("For this operation it MUST be single array in container\n");
pr_err("Error. Cannot perform operation on %s- for this operation "
"it MUST be single array in container\n", st->devnm);
return rv;
}
}

View File

@ -11683,8 +11683,8 @@ enum imsm_reshape_type imsm_analyze_change(struct supertype *st,
struct imsm_super *mpb = super->anchor;
if (mpb->num_raid_devs > 1) {
pr_err("Error. Cannot perform operation on %s- for this operation it MUST be single array in container\n",
geo->dev_name);
pr_err("Error. Cannot perform operation on %s- for this operation "
"it MUST be single array in container\n", geo->dev_name);
change = -1;
}
}