diff options
author | Doug Zongker <dougz@android.com> | 2010-11-03 15:18:12 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-11-03 15:18:12 -0700 |
commit | c5ebf1fba2f870a4e9453721112900975c18e083 (patch) | |
tree | b77fcc831eb1c8c17399d2a1e6e7dae9ff22b5ff /mtdutils | |
parent | 8521ef5965675da85c7bbbe9c8b86fe68716e855 (diff) | |
parent | 5d6309e77f6055a9aec062dd991d071054726ebb (diff) | |
download | bootable_recovery-c5ebf1fba2f870a4e9453721112900975c18e083.zip bootable_recovery-c5ebf1fba2f870a4e9453721112900975c18e083.tar.gz bootable_recovery-c5ebf1fba2f870a4e9453721112900975c18e083.tar.bz2 |
am 5d6309e7: fix comparison of ECC stats before and after mtd reads
* commit '5d6309e77f6055a9aec062dd991d071054726ebb':
fix comparison of ECC stats before and after mtd reads
Diffstat (limited to 'mtdutils')
-rw-r--r-- | mtdutils/mtdutils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mtdutils/mtdutils.c b/mtdutils/mtdutils.c index 48d5ea9..198f498 100644 --- a/mtdutils/mtdutils.c +++ b/mtdutils/mtdutils.c @@ -309,6 +309,8 @@ static int read_block(const MtdPartition *partition, int fd, char *data) fprintf(stderr, "mtd: ECC errors (%d soft, %d hard) at 0x%08llx\n", after.corrected - before.corrected, after.failed - before.failed, pos); + // copy the comparison baseline for the next read. + memcpy(&before, &after, sizeof(struct mtd_ecc_stats)); } else if ((mgbb = ioctl(fd, MEMGETBADBLOCK, &pos))) { fprintf(stderr, "mtd: MEMGETBADBLOCK returned %d at 0x%08llx (errno=%d)\n", |