summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliaoweixiong2019-06-28 06:14:46 +0200
committerGreg Kroah-Hartman2019-07-26 09:14:30 +0200
commitd6328d7c1a71b1cd17a7ea5ba0f3009a50e5d357 (patch)
treececfc80c0662bce4d20d3d74f881b3c09c03edd9
parentmtd: rawnand: mtk: Correct low level time calculation of r/w cycle (diff)
downloadkernel-qcow2-linux-d6328d7c1a71b1cd17a7ea5ba0f3009a50e5d357.tar.gz
kernel-qcow2-linux-d6328d7c1a71b1cd17a7ea5ba0f3009a50e5d357.tar.xz
kernel-qcow2-linux-d6328d7c1a71b1cd17a7ea5ba0f3009a50e5d357.zip
mtd: spinand: read returns badly if the last page has bitflips
commit b83408b580eccf8d2797cd6cb9ae42c2a28656a7 upstream. In case of the last page containing bitflips (ret > 0), spinand_mtd_read() will return that number of bitflips for the last page while it should instead return max_bitflips like it does when the last page read returns with 0. Signed-off-by: Weixiong Liao <liaoweixiong@allwinnertech.com> Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com> Reviewed-by: Frieder Schrempf <frieder.schrempf@kontron.de> Cc: stable@vger.kernel.org Fixes: 7529df465248 ("mtd: nand: Add core infrastructure to support SPI NANDs") Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/mtd/nand/spi/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/spi/core.c b/drivers/mtd/nand/spi/core.c
index 8c7bf91ce4e1..48b3ab26b124 100644
--- a/drivers/mtd/nand/spi/core.c
+++ b/drivers/mtd/nand/spi/core.c
@@ -572,12 +572,12 @@ static int spinand_mtd_read(struct mtd_info *mtd, loff_t from,
if (ret == -EBADMSG) {
ecc_failed = true;
mtd->ecc_stats.failed++;
- ret = 0;
} else {
mtd->ecc_stats.corrected += ret;
max_bitflips = max_t(unsigned int, max_bitflips, ret);
}
+ ret = 0;
ops->retlen += iter.req.datalen;
ops->oobretlen += iter.req.ooblen;
}