public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH] [MTD] NAND: Initialization of Bad Block Pattern
@ 2006-11-22 14:28 Konstantin Baydarov
  0 siblings, 0 replies; only message in thread
From: Konstantin Baydarov @ 2006-11-22 14:28 UTC (permalink / raw)
  To: linux-mtd

Second try. This patch correctly initialize badblock_pattern in
case NAND_IS_AND. Currently badblock_pattern is uninitialized and
if someone try to use it NULL pointer dereference will happen.

Signed-off-by: Konstantin Baydarov <kbaidarov@dev.rtsoft.ru>

Index: linux-2.6.18/drivers/mtd/nand/nand_bbt.c
===================================================================
--- linux-2.6.18.orig/drivers/mtd/nand/nand_bbt.c
+++ linux-2.6.18/drivers/mtd/nand/nand_bbt.c
@@ -1165,7 +1165,8 @@ int nand_default_bbt(struct mtd_info *mt
 			this->bbt_md = &bbt_mirror_descr;
 		}
 		this->options |= NAND_USE_FLASH_BBT;
-		return nand_scan_bbt(mtd, &agand_flashbased);
+		this->badblock_pattern = &agand_flashbased;
+		return nand_scan_bbt(mtd, this->badblock_pattern);
 	}
 
 	/* Is a flash based bad block table requested ? */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-11-22 14:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-22 14:28 [PATCH] [MTD] NAND: Initialization of Bad Block Pattern Konstantin Baydarov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox