Mercurial > yaffs-ecoscentric-gpl
changeset 285:10c3d1f468a0
Prevent corner case of a block changing state during a partial gc
| author | charles <charles> |
|---|---|
| date | Wed, 29 Jul 2009 04:30:24 +0000 |
| parents | a1cf385eb14c |
| children | 179e9b69f377 |
| files | yaffs_guts.c |
| diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/yaffs_guts.c +++ b/yaffs_guts.c @@ -12,7 +12,7 @@ */ const char *yaffs_guts_c_version = - "$Id: yaffs_guts.c,v 1.86 2009-07-28 03:04:54 charles Exp $"; + "$Id: yaffs_guts.c,v 1.87 2009-07-29 04:30:24 charles Exp $"; #include "yportenv.h" @@ -2969,7 +2969,6 @@ static int yaffs_GarbageCollectBlock(yaf isCheckpointBlock = (bi->blockState == YAFFS_BLOCK_STATE_CHECKPOINT); - bi->blockState = YAFFS_BLOCK_STATE_COLLECTING; T(YAFFS_TRACE_TRACING, (TSTR("Collecting block %d, in use %d, shrink %d, wholeBlock %d" TENDSTR), @@ -2980,6 +2979,9 @@ static int yaffs_GarbageCollectBlock(yaf /*yaffs_VerifyFreeChunks(dev); */ + if(bi->blockState == YAFFS_BLOCK_STATE_FULL) + bi->blockState = YAFFS_BLOCK_STATE_COLLECTING; + bi->hasShrinkHeader = 0; /* clear the flag so that the block can erase */ /* Take off the number of soft deleted entries because
