From 2bf62891c10903df323da49d601a88adebec7ee2 Mon Sep 17 00:00:00 2001 From: NeilBrown Date: Wed, 24 Jul 2013 12:22:58 +1000 Subject: [PATCH] super0/1: fix typo in error messages. Signed-off-by: NeilBrown --- super0.c | 2 +- super1.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/super0.c b/super0.c index e7d86d8..85acf36 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 6ec8542..eb42058 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; } }