logfs: do not use 'mtd->block_isbad' directly

Linux-MTD Mailing List linux-mtd at lists.infradead.org
Mon Jan 9 13:59:17 EST 2012


Gitweb:     http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=d58b27ed58a30faf376e40d19945f34301944b8d
Commit:     d58b27ed58a30faf376e40d19945f34301944b8d
Parent:     8f461a730242c528ca221948edceca49266a3ffb
Author:     Artem Bityutskiy <artem.bityutskiy at linux.intel.com>
AuthorDate: Mon Jan 2 13:52:14 2012 +0200
Committer:  David Woodhouse <David.Woodhouse at intel.com>
CommitDate: Mon Jan 9 18:26:25 2012 +0000

    logfs: do not use 'mtd->block_isbad' directly
    
    Instead, use the new 'mtd_can_have_bb()' helper.
    
    Cc: Jörn Engel <joern at logfs.org>
    Signed-off-by: Artem Bityutskiy <artem.bityutskiy at linux.intel.com>
    Signed-off-by: David Woodhouse <David.Woodhouse at intel.com>
---
 fs/logfs/dev_mtd.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/logfs/dev_mtd.c b/fs/logfs/dev_mtd.c
index 3f465882..e97404d 100644
--- a/fs/logfs/dev_mtd.c
+++ b/fs/logfs/dev_mtd.c
@@ -152,7 +152,7 @@ static struct page *logfs_mtd_find_first_sb(struct super_block *sb, u64 *ofs)
 	filler_t *filler = logfs_mtd_readpage;
 	struct mtd_info *mtd = super->s_mtd;
 
-	if (!mtd->block_isbad)
+	if (!mtd_can_have_bb(mtd))
 		return NULL;
 
 	*ofs = 0;
@@ -172,7 +172,7 @@ static struct page *logfs_mtd_find_last_sb(struct super_block *sb, u64 *ofs)
 	filler_t *filler = logfs_mtd_readpage;
 	struct mtd_info *mtd = super->s_mtd;
 
-	if (!mtd->block_isbad)
+	if (!mtd_can_have_bb(mtd))
 		return NULL;
 
 	*ofs = mtd->size - mtd->erasesize;



More information about the linux-mtd-cvs mailing list