All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtd: rawnand: Do not check for bad block if bbt is unavailable
@ 2021-01-30  3:54 ` Manivannan Sadhasivam
  0 siblings, 0 replies; 36+ messages in thread
From: Manivannan Sadhasivam @ 2021-01-30  3:54 UTC (permalink / raw)
  To: miquel.raynal, richard, vigneshr
  Cc: boris.brezillon, linux-mtd, linux-kernel, linux-arm-msm,
	bjorn.andersson, Manivannan Sadhasivam

The bbt pointer will be unavailable when NAND_SKIP_BBTSCAN option is
set for a NAND chip. The intention is to skip scanning for the bad
blocks during boot time. However, the MTD core will call
_block_isreserved() and _block_isbad() callbacks unconditionally for
the rawnand devices due to the callbacks always present while collecting
the ecc stats.

The _block_isreserved() callback for rawnand will bail out if bbt
pointer is not available. But _block_isbad() will continue without
checking for it. So this contradicts with the NAND_SKIP_BBTSCAN option
since the bad block check will happen anyways (ie., not much difference
between scanning for bad blocks and checking each block for bad ones).

Hence, do not check for the bad block if bbt pointer is unavailable.

Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
---
 drivers/mtd/nand/raw/nand_base.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/mtd/nand/raw/nand_base.c b/drivers/mtd/nand/raw/nand_base.c
index c33fa1b1847f..f18cd1db79a9 100644
--- a/drivers/mtd/nand/raw/nand_base.c
+++ b/drivers/mtd/nand/raw/nand_base.c
@@ -4286,6 +4286,9 @@ static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
 	int chipnr = (int)(offs >> chip->chip_shift);
 	int ret;
 
+	if (!chip->bbt)
+		return 0;
+
 	/* Select the NAND device */
 	ret = nand_get_device(chip);
 	if (ret)
-- 
2.25.1


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

end of thread, other threads:[~2021-02-04  9:32 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-30  3:54 [PATCH] mtd: rawnand: Do not check for bad block if bbt is unavailable Manivannan Sadhasivam
2021-01-30  3:54 ` Manivannan Sadhasivam
2021-02-01 14:18 ` Miquel Raynal
2021-02-01 14:18   ` Miquel Raynal
2021-02-02  4:16   ` Manivannan Sadhasivam
2021-02-02  4:16     ` Manivannan Sadhasivam
2021-02-02  8:14     ` Miquel Raynal
2021-02-02  8:14       ` Miquel Raynal
2021-02-03  9:58       ` Manivannan Sadhasivam
2021-02-03  9:58         ` Manivannan Sadhasivam
2021-02-03 10:05         ` Miquel Raynal
2021-02-03 10:05           ` Miquel Raynal
2021-02-03 10:12           ` Manivannan Sadhasivam
2021-02-03 10:12             ` Manivannan Sadhasivam
2021-02-03 10:19             ` Boris Brezillon
2021-02-03 10:19               ` Boris Brezillon
2021-02-03 10:52               ` Manivannan Sadhasivam
2021-02-03 10:52                 ` Manivannan Sadhasivam
2021-02-03 11:24                 ` Boris Brezillon
2021-02-03 11:24                   ` Boris Brezillon
2021-02-03 11:41                   ` Manivannan Sadhasivam
2021-02-03 11:41                     ` Manivannan Sadhasivam
2021-02-04  8:13                     ` Miquel Raynal
2021-02-04  8:13                       ` Miquel Raynal
2021-02-04  8:52                       ` Manivannan Sadhasivam
2021-02-04  8:52                         ` Manivannan Sadhasivam
2021-02-04  8:59                         ` Boris Brezillon
2021-02-04  8:59                           ` Boris Brezillon
2021-02-04  9:04                           ` Miquel Raynal
2021-02-04  9:04                             ` Miquel Raynal
2021-02-04  9:27                             ` Boris Brezillon
2021-02-04  9:27                               ` Boris Brezillon
2021-02-04  9:31                               ` Miquel Raynal
2021-02-04  9:31                                 ` Miquel Raynal
2021-02-04  8:59                         ` Miquel Raynal
2021-02-04  8:59                           ` Miquel Raynal

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.