summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2013-07-24 12:22:58 +1000
committerNeilBrown <neilb@suse.de>2013-07-24 12:22:58 +1000
commit2bf62891c10903df323da49d601a88adebec7ee2 (patch)
treee506006af9d1adc4ff7584ddde68d5b983fed871
parent3377ee4248b4b710cc8b62fb9f7057dd7b8b4dfe (diff)
super0/1: fix typo in error messages.
Signed-off-by: NeilBrown <neilb@suse.de>
-rw-r--r--super0.c2
-rw-r--r--super1.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/super0.c b/super0.c
index e7d86d87..85acf368 100644
--- a/super0.c
+++ b/super0.c
@@ -662,7 +662,7 @@ static int update_super0(struct supertype *st, struct mdinfo *info,
sb->new_chunk/512 *
(sb->raid_disks - sb->delta_disks - parity))) {
pr_err("Reshape position is not suitably aligned.\n");
- pr_err("Try normal assembly as stop again\n");
+ pr_err("Try normal assembly and stop again\n");
return -2;
}
sb->raid_disks -= sb->delta_disks;
diff --git a/super1.c b/super1.c
index 6ec8542b..eb420580 100644
--- a/super1.c
+++ b/super1.c
@@ -1284,7 +1284,7 @@ static int update_super1(struct supertype *st, struct mdinfo *info,
(__le32_to_cpu(sb->level)==6 ? 2 : 1);
if (reshape_sectors % reshape_chunk) {
pr_err("Reshape position is not suitably aligned.\n");
- pr_err("Try normal assembly as stop again\n");
+ pr_err("Try normal assembly and stop again\n");
return -2;
}
}