linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Fix corner case in bad block table handling.
@ 2020-07-15 14:46 Doyle, Patrick
  2020-08-03  8:30 ` Richard Weinberger
  2020-08-05 20:27 ` Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Doyle, Patrick @ 2020-07-15 14:46 UTC (permalink / raw)
  To: u-boot, linux-mtd, Boris Brezillon



In the unlikely event that both blocks 10 and 11 are marked as bad (on a
32 bit machine), then the process of marking block 10 as bad stomps on
cached entry for block 11.  There are (of course) other examples.

Signed-off-by: Patrick Doyle <pdoyle@irobot.com>
---
 drivers/mtd/nand/bbt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/nand/bbt.c b/drivers/mtd/nand/bbt.c
index 7e0ad3190c..eb1184aadb 100644
--- a/drivers/mtd/nand/bbt.c
+++ b/drivers/mtd/nand/bbt.c
@@ -124,7 +124,7 @@ int nanddev_bbt_set_block_status(struct nand_device *nand, unsigned int entry,
 		unsigned int rbits = bits_per_block + offs - BITS_PER_LONG;
 
 		pos[1] &= ~GENMASK(rbits - 1, 0);
-		pos[1] |= val >> rbits;
+		pos[1] |= val >> (bits_per_block - rbits);
 	}
 
 	return 0;
-- 
2.24.1
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Fix corner case in bad block table handling.
  2020-07-15 14:46 [PATCH] Fix corner case in bad block table handling Doyle, Patrick
@ 2020-08-03  8:30 ` Richard Weinberger
  2020-08-05 20:27 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Richard Weinberger @ 2020-08-03  8:30 UTC (permalink / raw)
  To: Doyle, Patrick; +Cc: u-boot, linux-mtd, Boris Brezillon

On Wed, Jul 15, 2020 at 4:54 PM Doyle, Patrick <pdoyle@irobot.com> wrote:
>
>
>
> In the unlikely event that both blocks 10 and 11 are marked as bad (on a
> 32 bit machine), then the process of marking block 10 as bad stomps on
> cached entry for block 11.  There are (of course) other examples.
>
> Signed-off-by: Patrick Doyle <pdoyle@irobot.com>
> ---
>  drivers/mtd/nand/bbt.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mtd/nand/bbt.c b/drivers/mtd/nand/bbt.c
> index 7e0ad3190c..eb1184aadb 100644
> --- a/drivers/mtd/nand/bbt.c
> +++ b/drivers/mtd/nand/bbt.c
> @@ -124,7 +124,7 @@ int nanddev_bbt_set_block_status(struct nand_device *nand, unsigned int entry,
>                 unsigned int rbits = bits_per_block + offs - BITS_PER_LONG;
>
>                 pos[1] &= ~GENMASK(rbits - 1, 0);
> -               pos[1] |= val >> rbits;
> +               pos[1] |= val >> (bits_per_block - rbits);

Looks good to me.

Fixes: 9c3736a3de21 ("mtd: nand: Add core infrastructure to deal with
NAND devices")
Reviewed-by: Richard Weinberger <richard@nod.at>

--
Thanks,
//richard

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Fix corner case in bad block table handling.
  2020-07-15 14:46 [PATCH] Fix corner case in bad block table handling Doyle, Patrick
  2020-08-03  8:30 ` Richard Weinberger
@ 2020-08-05 20:27 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Tom Rini @ 2020-08-05 20:27 UTC (permalink / raw)
  To: Doyle, Patrick; +Cc: u-boot, linux-mtd, Boris Brezillon


[-- Attachment #1.1: Type: text/plain, Size: 443 bytes --]

On Wed, Jul 15, 2020 at 02:46:34PM +0000, Doyle, Patrick wrote:

> In the unlikely event that both blocks 10 and 11 are marked as bad (on a
> 32 bit machine), then the process of marking block 10 as bad stomps on
> cached entry for block 11.  There are (of course) other examples.
> 
> Signed-off-by: Patrick Doyle <pdoyle@irobot.com>
> Reviewed-by: Richard Weinberger <richard@nod.at>

Applied to u-boot/master, thanks!

-- 
Tom

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

[-- Attachment #2: Type: text/plain, Size: 144 bytes --]

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-08-05 20:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-15 14:46 [PATCH] Fix corner case in bad block table handling Doyle, Patrick
2020-08-03  8:30 ` Richard Weinberger
2020-08-05 20:27 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).