From 51bd6245e2a5ffab0befa6aace5510b6e45ffa27 Mon Sep 17 00:00:00 2001 From: charles Date: Mon, 8 Jun 2009 23:50:44 +0000 Subject: [PATCH] Only subtract softDeletions once ber block gc. --- yaffs_guts.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/yaffs_guts.c b/yaffs_guts.c index 0db60b9..33ba5e6 100644 --- a/yaffs_guts.c +++ b/yaffs_guts.c @@ -12,7 +12,7 @@ */ const char *yaffs_guts_c_version = - "$Id: yaffs_guts.c,v 1.84 2009-05-26 04:50:08 charles Exp $"; + "$Id: yaffs_guts.c,v 1.85 2009-06-08 23:50:44 charles Exp $"; #include "yportenv.h" @@ -2985,7 +2985,8 @@ static int yaffs_GarbageCollectBlock(yaffs_Device *dev, int block, /* Take off the number of soft deleted entries because * they're going to get really deleted during GC. */ - dev->nFreeChunks -= bi->softDeletions; + if(dev->gcChunk == 0) /* first time through for this block */ + dev->nFreeChunks -= bi->softDeletions; dev->isDoingGC = 1; -- 2.30.2