Skip to content

Commit

Permalink
mtd: mtd_oobtest: Fix bitflip_limit usage in test case 3
Browse files Browse the repository at this point in the history
In test case 3, we set vary_offset to write at different
offsets and lengths in the OOB available area. We need to
do the bitflip_limit check while checking for 0xff outside the
OOB offset + length area that we didn't modify during write.

Signed-off-by: Roger Quadros <rogerq@ti.com>
[Brian: whitespace fixup]
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
  • Loading branch information
Roger Quadros authored and Brian Norris committed Apr 6, 2015
1 parent 45fd357 commit d2b51c8
Showing 1 changed file with 35 additions and 27 deletions.
62 changes: 35 additions & 27 deletions drivers/mtd/tests/oobtest.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,31 @@ static size_t memcmpshow(loff_t addr, const void *cs, const void *ct, size_t cou
return bitflips;
}

/*
* Compare with 0xff and show the address, offset and data bytes at
* comparison failure. Return number of bitflips encountered.
*/
static size_t memffshow(loff_t addr, loff_t offset, const void *cs,
size_t count)
{
const unsigned char *su1;
int res;
size_t i = 0;
size_t bitflips = 0;

for (su1 = cs; 0 < count; ++su1, count--, i++) {
res = *su1 ^ 0xff;
if (res) {
pr_info("error @addr[0x%lx:0x%lx] 0x%x -> 0xff diff 0x%x\n",
(unsigned long)addr, (unsigned long)offset + i,
*su1, res);
bitflips += hweight8(res);
}
}

return bitflips;
}

static int verify_eraseblock(int ebnum)
{
int i;
Expand Down Expand Up @@ -203,6 +228,15 @@ static int verify_eraseblock(int ebnum)
bitflips = memcmpshow(addr, readbuf + use_offset,
writebuf + (use_len_max * i) + use_offset,
use_len);

/* verify pre-offset area for 0xff */
bitflips += memffshow(addr, 0, readbuf, use_offset);

/* verify post-(use_offset + use_len) area for 0xff */
k = use_offset + use_len;
bitflips += memffshow(addr, k, readbuf + k,
mtd->ecclayout->oobavail - k);

if (bitflips > bitflip_limit) {
pr_err("error: verify failed at %#llx\n",
(long long)addr);
Expand All @@ -212,34 +246,8 @@ static int verify_eraseblock(int ebnum)
return -1;
}
} else if (bitflips) {
pr_info("ignoring error as within bitflip_limit\n");
pr_info("ignoring errors as within bitflip limit\n");
}

for (k = 0; k < use_offset; ++k)
if (readbuf[k] != 0xff) {
pr_err("error: verify 0xff "
"failed at %#llx\n",
(long long)addr);
errcnt += 1;
if (errcnt > 1000) {
pr_err("error: too "
"many errors\n");
return -1;
}
}
for (k = use_offset + use_len;
k < mtd->ecclayout->oobavail; ++k)
if (readbuf[k] != 0xff) {
pr_err("error: verify 0xff "
"failed at %#llx\n",
(long long)addr);
errcnt += 1;
if (errcnt > 1000) {
pr_err("error: too "
"many errors\n");
return -1;
}
}
}
if (vary_offset)
do_vary_offset();
Expand Down

0 comments on commit d2b51c8

Please sign in to comment.