From owner-freebsd-fs Thu Apr 24 16:57:56 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA10460 for fs-outgoing; Thu, 24 Apr 1997 16:57:56 -0700 (PDT) Received: from gatekeeper.tsc.tdk.com (root@gatekeeper.tsc.tdk.com [207.113.159.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA10454 for ; Thu, 24 Apr 1997 16:57:53 -0700 (PDT) Received: from sunrise.gv.tsc.tdk.com (root@sunrise.gv.tsc.tdk.com [192.168.241.191]) by gatekeeper.tsc.tdk.com (8.8.4/8.8.4) with ESMTP id QAA29384; Thu, 24 Apr 1997 16:56:21 -0700 (PDT) Received: from salsa.gv.tsc.tdk.com (salsa.gv.tsc.tdk.com [192.168.241.194]) by sunrise.gv.tsc.tdk.com (8.8.5/8.8.5) with ESMTP id QAA24329; Thu, 24 Apr 1997 16:56:20 -0700 (PDT) Received: (from gdonl@localhost) by salsa.gv.tsc.tdk.com (8.8.5/8.8.5) id QAA12777; Thu, 24 Apr 1997 16:56:19 -0700 (PDT) From: Don Lewis Message-Id: <199704242356.QAA12777@salsa.gv.tsc.tdk.com> Date: Thu, 24 Apr 1997 16:56:18 -0700 In-Reply-To: Narvi "Re: the namei cache..." (Apr 24, 8:24pm) X-Mailer: Mail User's Shell (7.2.6 alpha(3) 7/19/95) To: Narvi , David Greenman Subject: Re: the namei cache... Cc: Poul-Henning Kamp , Michael Hancock , fs@freebsd.org Sender: owner-fs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Apr 24, 8:24pm, Narvi wrote: } Subject: Re: the namei cache... } } How about not adding byte values but say, long values? We may have to keep } upto 3 bytes of additional space (avoiding overuns) but get it done in } about 1/4th of the additions. The additions are pretty cheap. The problem with adding bigger chunks is that the names aren't word aligned, so for each set of 4 bytes, you have to read two words, extract the desired bytes, and concatenate the results. --- Truck