* [PATCH] mtd: nand: gpmi: Fix failure when a erased page has a bitflip at BBM
@ 2017-12-05 10:51 Sascha Hauer
2017-12-05 18:40 ` Richard Weinberger
0 siblings, 1 reply; 3+ messages in thread
From: Sascha Hauer @ 2017-12-05 10:51 UTC (permalink / raw)
To: linux-mtd
Cc: Richard Weinberger, kernel, Han Xu, Boris Brezillon, Sascha Hauer
When erased subpages are read then the BCH decoder returns STATUS_ERASED
if they are all empty, or STATUS_UNCORRECTABLE if there are bitflips.
When there are bitflips, we have to set these bits again to show the
upper layers a completely erased page. When a bitflip happens in the
exact byte where the bad block marker is, then this byte is swapped
with another byte in block_mark_swapping(). The correction code then
detects a bitflip in another subpage and no longer corrects the bitflip
where it really happens.
Correct this behaviour by calling block_mark_swapping() after the
bitflips have been corrected.
In our case UBIFS failed with this bug because it expects erased
pages to be really empty:
UBIFS error (pid 187): ubifs_scan: corrupt empty space at LEB 36:118735
UBIFS error (pid 187): ubifs_scanned_corruption: corruption at LEB 36:118735
UBIFS error (pid 187): ubifs_scanned_corruption: first 8192 bytes from LEB 36:118735
UBIFS error (pid 187): ubifs_scan: LEB 36 scanning failed
UBIFS error (pid 187): do_commit: commit failed, error -117
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
drivers/mtd/nand/gpmi-nand/gpmi-nand.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
index 50f8d4a1b983..d4d824ef64e9 100644
--- a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
+++ b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
@@ -1067,9 +1067,6 @@ static int gpmi_ecc_read_page(struct mtd_info *mtd, struct nand_chip *chip,
return ret;
}
- /* handle the block mark swapping */
- block_mark_swapping(this, payload_virt, auxiliary_virt);
-
/* Loop over status bytes, accumulating ECC status. */
status = auxiliary_virt + nfc_geo->auxiliary_status_offset;
@@ -1158,6 +1155,9 @@ static int gpmi_ecc_read_page(struct mtd_info *mtd, struct nand_chip *chip,
max_bitflips = max_t(unsigned int, max_bitflips, *status);
}
+ /* handle the block mark swapping */
+ block_mark_swapping(this, buf, auxiliary_virt);
+
if (oob_required) {
/*
* It's time to deliver the OOB bytes. See gpmi_ecc_read_oob()
--
2.11.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] mtd: nand: gpmi: Fix failure when a erased page has a bitflip at BBM
2017-12-05 10:51 [PATCH] mtd: nand: gpmi: Fix failure when a erased page has a bitflip at BBM Sascha Hauer
@ 2017-12-05 18:40 ` Richard Weinberger
2017-12-06 9:14 ` Boris Brezillon
0 siblings, 1 reply; 3+ messages in thread
From: Richard Weinberger @ 2017-12-05 18:40 UTC (permalink / raw)
To: Sascha Hauer; +Cc: linux-mtd, kernel, Han Xu, Boris Brezillon
Am Dienstag, 5. Dezember 2017, 11:51:40 CET schrieb Sascha Hauer:
> When erased subpages are read then the BCH decoder returns STATUS_ERASED
> if they are all empty, or STATUS_UNCORRECTABLE if there are bitflips.
> When there are bitflips, we have to set these bits again to show the
> upper layers a completely erased page. When a bitflip happens in the
> exact byte where the bad block marker is, then this byte is swapped
> with another byte in block_mark_swapping(). The correction code then
> detects a bitflip in another subpage and no longer corrects the bitflip
> where it really happens.
>
> Correct this behaviour by calling block_mark_swapping() after the
> bitflips have been corrected.
>
> In our case UBIFS failed with this bug because it expects erased
> pages to be really empty:
>
> UBIFS error (pid 187): ubifs_scan: corrupt empty space at LEB 36:118735
> UBIFS error (pid 187): ubifs_scanned_corruption: corruption at LEB 36:118735
> UBIFS error (pid 187): ubifs_scanned_corruption: first 8192 bytes from LEB
> 36:118735 UBIFS error (pid 187): ubifs_scan: LEB 36 scanning failed
> UBIFS error (pid 187): do_commit: commit failed, error -117
>
> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
> ---
> drivers/mtd/nand/gpmi-nand/gpmi-nand.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
> b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c index 50f8d4a1b983..d4d824ef64e9
> 100644
> --- a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
> +++ b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
> @@ -1067,9 +1067,6 @@ static int gpmi_ecc_read_page(struct mtd_info *mtd,
> struct nand_chip *chip, return ret;
> }
>
> - /* handle the block mark swapping */
> - block_mark_swapping(this, payload_virt, auxiliary_virt);
> -
> /* Loop over status bytes, accumulating ECC status. */
> status = auxiliary_virt + nfc_geo->auxiliary_status_offset;
>
> @@ -1158,6 +1155,9 @@ static int gpmi_ecc_read_page(struct mtd_info *mtd,
> struct nand_chip *chip, max_bitflips = max_t(unsigned int, max_bitflips,
> *status);
> }
>
> + /* handle the block mark swapping */
> + block_mark_swapping(this, buf, auxiliary_virt);
> +
> if (oob_required) {
> /*
> * It's time to deliver the OOB bytes. See gpmi_ecc_read_oob()
Fixes: bd2e778c9ee3 ("gpmi-nand: Handle ECC Errors in erased pages")
Reviewed-by: Richard Weinberger <richard@nod.at>
Thanks,
//richard
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] mtd: nand: gpmi: Fix failure when a erased page has a bitflip at BBM
2017-12-05 18:40 ` Richard Weinberger
@ 2017-12-06 9:14 ` Boris Brezillon
0 siblings, 0 replies; 3+ messages in thread
From: Boris Brezillon @ 2017-12-06 9:14 UTC (permalink / raw)
To: Richard Weinberger; +Cc: Sascha Hauer, Han Xu, linux-mtd, kernel
On Tue, 05 Dec 2017 19:40:54 +0100
Richard Weinberger <richard@nod.at> wrote:
> Am Dienstag, 5. Dezember 2017, 11:51:40 CET schrieb Sascha Hauer:
> > When erased subpages are read then the BCH decoder returns STATUS_ERASED
> > if they are all empty, or STATUS_UNCORRECTABLE if there are bitflips.
> > When there are bitflips, we have to set these bits again to show the
> > upper layers a completely erased page. When a bitflip happens in the
> > exact byte where the bad block marker is, then this byte is swapped
> > with another byte in block_mark_swapping(). The correction code then
> > detects a bitflip in another subpage and no longer corrects the bitflip
> > where it really happens.
> >
> > Correct this behaviour by calling block_mark_swapping() after the
> > bitflips have been corrected.
> >
> > In our case UBIFS failed with this bug because it expects erased
> > pages to be really empty:
> >
> > UBIFS error (pid 187): ubifs_scan: corrupt empty space at LEB 36:118735
> > UBIFS error (pid 187): ubifs_scanned_corruption: corruption at LEB 36:118735
> > UBIFS error (pid 187): ubifs_scanned_corruption: first 8192 bytes from LEB
> > 36:118735 UBIFS error (pid 187): ubifs_scan: LEB 36 scanning failed
> > UBIFS error (pid 187): do_commit: commit failed, error -117
> >
> > Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
> > ---
> > drivers/mtd/nand/gpmi-nand/gpmi-nand.c | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
> > b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c index 50f8d4a1b983..d4d824ef64e9
> > 100644
> > --- a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
> > +++ b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
> > @@ -1067,9 +1067,6 @@ static int gpmi_ecc_read_page(struct mtd_info *mtd,
> > struct nand_chip *chip, return ret;
> > }
> >
> > - /* handle the block mark swapping */
> > - block_mark_swapping(this, payload_virt, auxiliary_virt);
> > -
> > /* Loop over status bytes, accumulating ECC status. */
> > status = auxiliary_virt + nfc_geo->auxiliary_status_offset;
> >
> > @@ -1158,6 +1155,9 @@ static int gpmi_ecc_read_page(struct mtd_info *mtd,
> > struct nand_chip *chip, max_bitflips = max_t(unsigned int, max_bitflips,
> > *status);
> > }
> >
> > + /* handle the block mark swapping */
> > + block_mark_swapping(this, buf, auxiliary_virt);
> > +
> > if (oob_required) {
> > /*
> > * It's time to deliver the OOB bytes. See gpmi_ecc_read_oob()
>
> Fixes: bd2e778c9ee3 ("gpmi-nand: Handle ECC Errors in erased pages")
> Reviewed-by: Richard Weinberger <richard@nod.at>
Richard, can you queue that to the mtd/master (AKA mtd/fixes) branch.
Here is my
Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>
and don't forget
Cc: <stable@vger.kernel.org>
Thanks,
Boris
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-12-06 9:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-05 10:51 [PATCH] mtd: nand: gpmi: Fix failure when a erased page has a bitflip at BBM Sascha Hauer
2017-12-05 18:40 ` Richard Weinberger
2017-12-06 9:14 ` Boris Brezillon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox