From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1EfByg-0005YE-O8 for mharc-grub-devel@gnu.org; Thu, 24 Nov 2005 02:57:11 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EfByc-0005XY-JF for grub-devel@gnu.org; Thu, 24 Nov 2005 02:57:06 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EfByZ-0005Wd-Bv for grub-devel@gnu.org; Thu, 24 Nov 2005 02:57:05 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EfByX-0005WP-Qx for grub-devel@gnu.org; Thu, 24 Nov 2005 02:57:02 -0500 Received: from [157.24.2.30] (helo=smtp1.cc.lut.fi) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EfByX-00039S-Mh for grub-devel@gnu.org; Thu, 24 Nov 2005 02:57:01 -0500 Received: from localhost (smtp1 [127.0.0.1]) by smtp1.cc.lut.fi (Postfix) with ESMTP id 1EC63702BC for ; Thu, 24 Nov 2005 09:57:00 +0200 (EET) Received: from smtp1.cc.lut.fi ([127.0.0.1]) by localhost (smtp1.cc.lut.fi [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28848-06 for ; Thu, 24 Nov 2005 09:56:59 +0200 (EET) Received: from [192.168.1.100] (lk4-a-4-1.lnet.lut.fi [157.24.102.107]) by smtp1.cc.lut.fi (Postfix) with ESMTP id CD822702AE for ; Thu, 24 Nov 2005 09:56:59 +0200 (EET) Message-ID: <4385725A.90407@nic.fi> Date: Thu, 24 Nov 2005 09:57:14 +0200 From: =?ISO-8859-1?Q?Vesa_J=E4=E4skel=E4inen?= User-Agent: Thunderbird 1.4.1 (Windows/20051006) MIME-Version: 1.0 To: The development of GRUB 2 References: <4bf7a326c787c00b52f64b301ebfacdd@penguinppc.org> <87acfv1r2l.fsf@student.han.nl> <9eb572492c718bfc89029063bbd082b5@penguinppc.org> <43855C5E.3050804@nic.fi> <87psoqjyhz.fsf@student.han.nl> In-Reply-To: <87psoqjyhz.fsf@student.han.nl> X-Enigmail-Version: 0.93.0.0 Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Scanned: by lut.fi Content-Transfer-Encoding: quoted-printable Subject: Re: module references X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Nov 2005 07:57:07 -0000 Marco Gerards wrote: > Vesa J=E4=E4skel=E4inen writes: >=20 >>> Please describe for me how I can trigger this bug. In other words, wh= at >>> commands can I run to unload a filesystem module while a file is open= ? >> One way at least is to use font subsystem. That at least keeps file op= en. >> >> See guide from Okuji's message how to create font file and: >> >> insmod font >> font .../fontfile.pff >=20 > Shouldn't the font file be opened, loaded into memory and closed? Not at this time :) Perhaps in the future... But in reality, memory requirements for whole Unicode map is quite big. So loading only parts that really matter, saves quite a lot. If you look at the code there is TODO with similar commend "caching needed" :) If we think about my problem with fonts (or reading them), I didn't even try to make workaround like caching everything. Instead I wanted to find root cause for the reading problem. So this has slowed down a bit development.