]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
5.10-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 24 Jan 2022 14:48:32 +0000 (15:48 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 24 Jan 2022 14:48:32 +0000 (15:48 +0100)
added patches:
mtd-nand-bbt-fix-corner-case-in-bad-block-table-handling.patch

queue-5.10/mtd-nand-bbt-fix-corner-case-in-bad-block-table-handling.patch [new file with mode: 0644]
queue-5.10/series

diff --git a/queue-5.10/mtd-nand-bbt-fix-corner-case-in-bad-block-table-handling.patch b/queue-5.10/mtd-nand-bbt-fix-corner-case-in-bad-block-table-handling.patch
new file mode 100644 (file)
index 0000000..ab4bf89
--- /dev/null
@@ -0,0 +1,36 @@
+From fd0d8d85f7230052e638a56d1bfea170c488e6bc Mon Sep 17 00:00:00 2001
+From: "Doyle, Patrick" <pdoyle@irobot.com>
+Date: Tue, 6 Apr 2021 10:47:08 +0900
+Subject: mtd: nand: bbt: Fix corner case in bad block table handling
+
+From: Doyle, Patrick <pdoyle@irobot.com>
+
+commit fd0d8d85f7230052e638a56d1bfea170c488e6bc upstream.
+
+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>
+Signed-off-by: Yoshio Furuyama <ytc-mb-yfuruyama7@kioxia.com>
+[<miquel.raynal@bootlin.com>: Fixed the title]
+Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
+Cc: Frieder Schrempf <frieder.schrempf@kontron.de>
+Link: https://lore.kernel.org/linux-mtd/774a92693f311e7de01e5935e720a179fb1b2468.1616635406.git.ytc-mb-yfuruyama7@kioxia.com
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ drivers/mtd/nand/bbt.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/drivers/mtd/nand/bbt.c
++++ b/drivers/mtd/nand/bbt.c
+@@ -123,7 +123,7 @@ int nanddev_bbt_set_block_status(struct
+               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;
index c95743e1683f54d4b8ca01feb59f03f8a61ffda7..284cee0379b2561a855edd39685aea3ce635389c 100644 (file)
@@ -561,3 +561,4 @@ scripts-dtc-dtx_diff-remove-broken-example-from-help-text.patch
 lib82596-fix-irq-check-in-sni_82596_probe.patch
 mm-hmm.c-allow-vm_mixedmap-to-work-with-hmm_range_fault.patch
 lib-test_meminit-destroy-cache-in-kmem_cache_alloc_bulk-test.patch
+mtd-nand-bbt-fix-corner-case-in-bad-block-table-handling.patch