From mboxrd@z Thu Jan 1 00:00:00 1970 From: anothy@cosym.net To: 9fans@cse.psu.edu Subject: Re: [9fans] KFS magic size? MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Message-Id: <20020810154250.E22BE19A27@mail.cse.psu.edu> Date: Sat, 10 Aug 2002 11:31:55 -0400 Topicbox-Message-UUID: da108b3e-eaca-11e9-9e20-41e7f4b1d025 the design of kfs is such that the maximum file size is derived from the block size. i believe the following are correct for finding the max size from a given block size: max_in_blocks = 6 + iba + iba*iba iba = (blocksize - 8)/sizeof(ulong) multiply by (blocksize -8) to get size in bytes. so the simplest way to answer your question is "use a bigger block size" (which, of course, involves reformating your kfs partition, and makes it a bit less efficient with space). my solution to this problem, since i wasn't willing to reformat my existing partition, was to simply buy enough ram to hold a CD image. ア