[openwrt/openwrt] kernel: mtk_bmt: pass number of bitflips on read to the caller

LEDE Commits lede-commits at lists.infradead.org
Thu Jan 13 11:13:49 PST 2022


nbd pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/0ddead089778e399d01a744d91eed3d665922bd4

commit 0ddead089778e399d01a744d91eed3d665922bd4
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Sun Jan 9 20:18:27 2022 +0100

    kernel: mtk_bmt: pass number of bitflips on read to the caller
    
    Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
 target/linux/generic/files/drivers/mtd/nand/mtk_bmt.c | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/target/linux/generic/files/drivers/mtd/nand/mtk_bmt.c b/target/linux/generic/files/drivers/mtd/nand/mtk_bmt.c
index 14fbd246d7..84538f9180 100644
--- a/target/linux/generic/files/drivers/mtd/nand/mtk_bmt.c
+++ b/target/linux/generic/files/drivers/mtd/nand/mtk_bmt.c
@@ -497,6 +497,7 @@ mtk_bmt_read(struct mtd_info *mtd, loff_t from,
 	int retry_count = 0;
 	loff_t cur_from;
 	int ret = 0;
+	int max_bitflips = 0;
 
 	ops->retlen = 0;
 	ops->oobretlen = 0;
@@ -518,12 +519,14 @@ mtk_bmt_read(struct mtd_info *mtd, loff_t from,
 		cur_ret = bmtd._read_oob(mtd, cur_from, &cur_ops);
 		if (cur_ret < 0)
 			ret = cur_ret;
+		else
+			max_bitflips = max_t(int, max_bitflips, cur_ret);
 		if (cur_ret < 0 && !mtd_is_bitflip(cur_ret)) {
 			update_bmt(block, mtd->erasesize);
 			if (retry_count++ < 10)
 				continue;
 
-			return ret;
+			goto out;
 		}
 
 		ops->retlen += cur_ops.retlen;
@@ -541,7 +544,11 @@ mtk_bmt_read(struct mtd_info *mtd, loff_t from,
 		retry_count = 0;
 	}
 
-	return ret;
+out:
+	if (ret < 0)
+		return ret;
+
+	return max_bitflips;
 }
 
 static int



More information about the lede-commits mailing list