From aa8454786457b8b3144e8859da15ac3719cc0602 Mon Sep 17 00:00:00 2001 From: Charles Manning Date: Thu, 19 Aug 2010 16:00:15 +1200 Subject: [PATCH] yaffs Tweak gc parameters This will reduce unnecessary garbace collection by limiting in-thread garbage collection to when the garbage > 3/4 of the free space. This should push more gc into background and make the write path faster. Signed-off-by: Charles Manning --- yaffs_guts.c | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/yaffs_guts.c b/yaffs_guts.c index 389a57c..75eeb84 100644 --- a/yaffs_guts.c +++ b/yaffs_guts.c @@ -2435,7 +2435,16 @@ static unsigned yaffs_FindBlockForGarbageCollection(yaffs_Device *dev, threshold = dev->param.nChunksPerBlock; iterations = nBlocks; } else { - int maxThreshold = dev->param.nChunksPerBlock/2; + int maxThreshold; + + if(background) + maxThreshold = dev->param.nChunksPerBlock/2; + else + maxThreshold = dev->param.nChunksPerBlock/8; + + if(maxThreshold < YAFFS_GC_PASSIVE_THRESHOLD) + maxThreshold = YAFFS_GC_PASSIVE_THRESHOLD; + threshold = background ? (dev->gcNotDone + 2) * 2 : 0; if(threshold param.gcControl && @@ -2568,6 +2575,9 @@ static int yaffs_CheckGarbageCollection(yaffs_Device *dev, int background) if (dev->nErasedBlocks < minErased) aggressive = 1; else { + if(!background && erasedChunks > (dev->nFreeChunks / 4)) + break; + if(dev->gcSkip > 20) dev->gcSkip = 20; if(erasedChunks < dev->nFreeChunks/2 || -- 2.30.2