|
|
@@ -1,18 +1,22 @@
|
|
|
-From cf0d2fbaae9e962d91a321de75e0d4f9f9ccbdfe Mon Sep 17 00:00:00 2001
|
|
|
+From 095b4dabff2a929cefd330110c5c578956213188 Mon Sep 17 00:00:00 2001
|
|
|
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <[email protected]>
|
|
|
-Date: Thu, 21 Jan 2021 18:17:37 +0100
|
|
|
-Subject: [PATCH] nand: brcmnand: fix OOB R/W with Hamming ECC
|
|
|
+Date: Wed, 24 Feb 2021 09:02:10 +0100
|
|
|
+Subject: [PATCH] mtd: rawnand: brcmnand: fix OOB R/W with Hamming ECC
|
|
|
MIME-Version: 1.0
|
|
|
Content-Type: text/plain; charset=UTF-8
|
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
|
|
Hamming ECC doesn't cover the OOB data, so reading or writing OOB shall
|
|
|
always be done without ECC enabled.
|
|
|
-This is a problem when adding JFFS2 cleanmarkers to erased blocks. When JFFS2
|
|
|
+This is a problem when adding JFFS2 cleanmarkers to erased blocks. If JFFS2
|
|
|
clenmarkers are added to the OOB with ECC enabled, OOB bytes will be changed
|
|
|
from ff ff ff to 00 00 00, reporting incorrect ECC errors.
|
|
|
|
|
|
+Fixes: 27c5b17cd1b1 ("mtd: nand: add NAND driver "library" for Broadcom STB NAND controller")
|
|
|
Signed-off-by: Álvaro Fernández Rojas <[email protected]>
|
|
|
+Acked-by: Brian Norris <[email protected]>
|
|
|
+Signed-off-by: Miquel Raynal <[email protected]>
|
|
|
+Link: https://lore.kernel.org/linux-mtd/[email protected]
|
|
|
---
|
|
|
drivers/mtd/nand/raw/brcmnand/brcmnand.c | 6 ++++++
|
|
|
1 file changed, 6 insertions(+)
|