diff mbox

mtd stresstest: Fix random number generation

Message ID 1337954309-18178-1-git-send-email-s.hauer@pengutronix.de
State New, archived
Headers show

Commit Message

Sascha Hauer May 25, 2012, 1:58 p.m. UTC
the random number generation in the mtd stresstest was changed from a
homebrew generator to random32. random32 generates unsigned random
numbers, but the values are assigned to signed integers. This results
in negative offsets, eraseblocks and writesized. Fix it by using unsigned
integers for these variables instead.

This is broken since:

commit d9c04f2ccc6db3bc4b80e969af66d486c42e77b0
Author: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Date:   Fri May 18 18:44:53 2012 +0300

    mtd: tests: use random32 instead of home-brewed generator

    This is a clean-up patch which removes the own pseudo-random numbers generator
    from the speed- and stress-tests and makes them use the 'random32()' generator
    instead.

    Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 drivers/mtd/tests/mtd_stresstest.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Artem Bityutskiy May 25, 2012, 2:57 p.m. UTC | #1
On Fri, 2012-05-25 at 15:58 +0200, Sascha Hauer wrote:
> the random number generation in the mtd stresstest was changed from a
> homebrew generator to random32. random32 generates unsigned random
> numbers, but the values are assigned to signed integers. This results
> in negative offsets, eraseblocks and writesized. Fix it by using unsigned
> integers for these variables instead.

Pushed to l2-mtd.git, thanks!
diff mbox

Patch

diff --git a/drivers/mtd/tests/mtd_stresstest.c b/drivers/mtd/tests/mtd_stresstest.c
index 52ea178..cb268ce 100644
--- a/drivers/mtd/tests/mtd_stresstest.c
+++ b/drivers/mtd/tests/mtd_stresstest.c
@@ -52,7 +52,7 @@  static int pgcnt;
 
 static int rand_eb(void)
 {
-	int eb;
+	unsigned int eb;
 
 again:
 	eb = random32();
@@ -65,7 +65,7 @@  again:
 
 static int rand_offs(void)
 {
-	int offs;
+	unsigned int offs;
 
 	offs = random32();
 	offs %= bufsize;
@@ -74,7 +74,7 @@  static int rand_offs(void)
 
 static int rand_len(int offs)
 {
-	int len;
+	unsigned int len;
 
 	len = random32();
 	len %= (bufsize - offs);