From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from dell-paw-3.cambridge.redhat.com ([195.224.55.237] helo=passion.cambridge.redhat.com) by pentafluge.infradead.org with esmtp (Exim 3.22 #1 (Red Hat Linux)) id 16bkld-0005nG-00 for ; Fri, 15 Feb 2002 15:59:21 +0000 From: David Woodhouse In-Reply-To: References: To: "Navin Boppuri" Cc: "Chris Vagnini" , linux-mtd@lists.infradead.org Subject: Re: Weird status information on JFFS2 File System Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 15 Feb 2002 16:10:24 +0000 Message-ID: <5007.1013789424@redhat.com> Sender: linux-mtd-admin@lists.infradead.org Errors-To: linux-mtd-admin@lists.infradead.org List-Help: List-Post: List-Subscribe: , List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: navin.boppuri@newisys.com said: > Is there some way I can change the 5 erase blocks default to a > smaller size? What are the implications of doing that? grep RESERVED fs/jffs2/nodelist.h The danger in reducing it too far is that you'll run out of free space entirely, so that garbage collection cannot continue and your file system gets entirely stuck. We ought to be able to reduce it to only a block or two, but the code wants auditing for safety first - we have to ensure that we never expand while garbage-collecting. -- dwmw2