X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=yaffs_packedtags2.c;h=342e550e24420e4ee6d8ec0fce9c0b1c8aee88b3;hp=01e23a7dfb7de3647ec88b4affa3cb6215f4f728;hb=f9d17ff809f72018696c137b3641751c16119d65;hpb=6d328375504ad23f4731f17fcf12eeeb26a55f21;ds=sidebyside diff --git a/yaffs_packedtags2.c b/yaffs_packedtags2.c index 01e23a7..342e550 100644 --- a/yaffs_packedtags2.c +++ b/yaffs_packedtags2.c @@ -89,8 +89,11 @@ void yaffs_PackTags2(yaffs_PackedTags2 *pt, const yaffs_ExtendedTags *t) yaffs_DumpPackedTags2(pt); yaffs_DumpTags2(t); - yaffs_ECCCalculateOther((unsigned char *)&pt->t,sizeof(yaffs_PackedTags2TagsPart),&pt->ecc); - +#ifndef YAFFS_IGNORE_TAGS_ECC + { + yaffs_ECCCalculateOther((unsigned char *)&pt->t,sizeof(yaffs_PackedTags2TagsPart),&pt->ecc); + } +#endif } void yaffs_UnpackTags2(yaffs_ExtendedTags *t, yaffs_PackedTags2 *pt) @@ -104,9 +107,17 @@ void yaffs_UnpackTags2(yaffs_ExtendedTags *t, yaffs_PackedTags2 *pt) if(pt->t.sequenceNumber != 0xFFFFFFFF) { // Page is in use - yaffs_ECCOther ecc; - yaffs_ECCCalculateOther((unsigned char *)&pt->t,sizeof(yaffs_PackedTags2TagsPart),&ecc); - t->eccResult = yaffs_ECCCorrectOther((unsigned char *)&pt->t,sizeof(yaffs_PackedTags2TagsPart),&pt->ecc,&ecc); +#ifdef YAFFS_IGNORE_TAGS_ECC + { + t->eccResult = 0; + } +#else + { + yaffs_ECCOther ecc; + yaffs_ECCCalculateOther((unsigned char *)&pt->t,sizeof(yaffs_PackedTags2TagsPart),&ecc); + t->eccResult = yaffs_ECCCorrectOther((unsigned char *)&pt->t,sizeof(yaffs_PackedTags2TagsPart),&pt->ecc,&ecc); + } +#endif t->blockBad = 0; t->chunkUsed = 1; t->objectId = pt->t.objectId;