X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=yaffs_yaffs1.c;h=e3573474e4fab3b2fccb56f6944f6963a1f56469;hp=4f2e76878ceab34c27d5bba7162d9042234e9880;hb=7003e06cea707d4960217490af2c1eb65b79c352;hpb=33308768bd24abe4e1f59c5025a3dd824119ae1d diff --git a/yaffs_yaffs1.c b/yaffs_yaffs1.c index 4f2e768..e357347 100644 --- a/yaffs_yaffs1.c +++ b/yaffs_yaffs1.c @@ -1,8 +1,7 @@ /* * YAFFS: Yet Another Flash File System. A NAND-flash specific file system. * - * Copyright (C) 2002-2011 Aleph One Ltd. - * for Toby Churchill Ltd and Brightstar Engineering + * Copyright (C) 2002-2018 Aleph One Ltd. * * Created by Charles Manning * @@ -21,11 +20,14 @@ int yaffs1_scan(struct yaffs_dev *dev) { +#ifdef CONFIG_NO_YAFFS1 + return YAFFS_FAIL; +#else struct yaffs_ext_tags tags; - int blk; + u32 blk; int result; int chunk; - int c; + u32 c; int deleted; enum yaffs_block_state state; LIST_HEAD(hard_list); @@ -98,6 +100,8 @@ int yaffs1_scan(struct yaffs_dev *dev) result = yaffs_rd_chunk_tags_nand(dev, chunk, NULL, &tags); + if (result != YAFFS_OK) + continue; /* Let's have a good look at this chunk... */ if (tags.ecc_result == YAFFS_ECC_RESULT_UNFIXED || @@ -325,7 +329,7 @@ int yaffs1_scan(struct yaffs_dev *dev) use_header_file_size) in->variant. file_variant.file_size - = yaffs_oh_to_size(oh); + = yaffs_oh_to_size(dev, oh, 0); break; case YAFFS_OBJECT_TYPE_HARDLINK: in->variant. @@ -419,4 +423,5 @@ int yaffs1_scan(struct yaffs_dev *dev) yaffs_trace(YAFFS_TRACE_SCAN, "yaffs1_scan ends"); return YAFFS_OK; +#endif }