|
@@ -269,7 +269,10 @@ static int verify_all_eraseblocks_ff(void)
|
|
|
return err;
|
|
|
if (i % 256 == 0)
|
|
|
pr_info("verified up to eraseblock %u\n", i);
|
|
|
- cond_resched();
|
|
|
+
|
|
|
+ err = mtdtest_relax();
|
|
|
+ if (err)
|
|
|
+ return err;
|
|
|
}
|
|
|
pr_info("verified %u eraseblocks\n", i);
|
|
|
return 0;
|
|
@@ -346,7 +349,10 @@ static int __init mtd_subpagetest_init(void)
|
|
|
goto out;
|
|
|
if (i % 256 == 0)
|
|
|
pr_info("written up to eraseblock %u\n", i);
|
|
|
- cond_resched();
|
|
|
+
|
|
|
+ err = mtdtest_relax();
|
|
|
+ if (err)
|
|
|
+ goto out;
|
|
|
}
|
|
|
pr_info("written %u eraseblocks\n", i);
|
|
|
|
|
@@ -360,7 +366,10 @@ static int __init mtd_subpagetest_init(void)
|
|
|
goto out;
|
|
|
if (i % 256 == 0)
|
|
|
pr_info("verified up to eraseblock %u\n", i);
|
|
|
- cond_resched();
|
|
|
+
|
|
|
+ err = mtdtest_relax();
|
|
|
+ if (err)
|
|
|
+ goto out;
|
|
|
}
|
|
|
pr_info("verified %u eraseblocks\n", i);
|
|
|
|
|
@@ -383,7 +392,10 @@ static int __init mtd_subpagetest_init(void)
|
|
|
goto out;
|
|
|
if (i % 256 == 0)
|
|
|
pr_info("written up to eraseblock %u\n", i);
|
|
|
- cond_resched();
|
|
|
+
|
|
|
+ err = mtdtest_relax();
|
|
|
+ if (err)
|
|
|
+ goto out;
|
|
|
}
|
|
|
pr_info("written %u eraseblocks\n", i);
|
|
|
|
|
@@ -398,7 +410,10 @@ static int __init mtd_subpagetest_init(void)
|
|
|
goto out;
|
|
|
if (i % 256 == 0)
|
|
|
pr_info("verified up to eraseblock %u\n", i);
|
|
|
- cond_resched();
|
|
|
+
|
|
|
+ err = mtdtest_relax();
|
|
|
+ if (err)
|
|
|
+ goto out;
|
|
|
}
|
|
|
pr_info("verified %u eraseblocks\n", i);
|
|
|
|