[PATCH 13/13] fs-tests: integck: print a bit less if in power cut mode

Artem Bityutskiy dedekind1 at gmail.com
Fri Apr 22 13:25:24 EDT 2011


From: Artem Bityutskiy <Artem.Bityutskiy at nokia.com>

Do not print extra messages when unable to re-mount - they are
already printed by the recover function.

Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy at nokia.com>
---
 tests/fs-tests/integrity/integck.c |   25 ++++++++++++-------------
 1 files changed, 12 insertions(+), 13 deletions(-)

diff --git a/tests/fs-tests/integrity/integck.c b/tests/fs-tests/integrity/integck.c
index 55fe8be..63f6956 100644
--- a/tests/fs-tests/integrity/integck.c
+++ b/tests/fs-tests/integrity/integck.c
@@ -3014,6 +3014,18 @@ int main(int argc, char *argv[])
 
 		free_test_data();
 
+		do {
+			ret = recover_tested_fs();
+			if (ret) {
+				CHECK(errno == EROFS);
+				rpt += 1;
+			}
+			/*
+			 * Mount may also fail due to an emulated power cut
+			 * while mounting - keep re-starting.
+			 */
+		} while (ret);
+
 		/*
 		 * The file-system became read-only and we are in power cut
 		 * testing mode. Re-mount the file-system and re-start the
@@ -3022,19 +3034,6 @@ int main(int argc, char *argv[])
 		if (args.verbose)
 			normsg("re-mount the FS and re-start - count %ld", rpt);
 
-		do {
-			ret = recover_tested_fs();
-			if (ret) {
-				CHECK(errno == EROFS);
-				/*
-				 * Mount may also fail due to an emulated power
-				 * cut while mounting - keep re-starting.
-				 */
-				if (args.verbose)
-					normsg("could not mount, try again - count %ld",
-					       ++rpt);
-			}
-		} while (ret);
 	}
 
 	free_test_data();
-- 
1.7.2.3




More information about the linux-mtd mailing list