From owner-freebsd-current@FreeBSD.ORG Thu Aug 19 09:00:39 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7CAD16A4CE for ; Thu, 19 Aug 2004 09:00:39 +0000 (GMT) Received: from abigail.blackend.org (blackend.org [212.11.35.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB7A243D2D for ; Thu, 19 Aug 2004 09:00:38 +0000 (GMT) (envelope-from marc@blackend.org) Received: from abigail.blackend.org (localhost [127.0.0.1]) i7J90aSA021108; Thu, 19 Aug 2004 11:00:36 +0200 (CEST) (envelope-from marc@abigail.blackend.org) Received: (from marc@localhost) by abigail.blackend.org (8.12.11/8.12.11/Submit) id i7J90ZSf021107; Thu, 19 Aug 2004 11:00:35 +0200 (CEST) (envelope-from marc) Date: Thu, 19 Aug 2004 11:00:35 +0200 From: Marc Fonvieille To: sam Message-ID: <20040819090034.GC20058@abigail.blackend.org> References: <20040818200530.GA88370@abigail.blackend.org> <20040818205029.GA48028@xor.obsecurity.org> <6.1.2.0.0.20040818170232.05773880@64.7.153.2> <20040819072614.GA19508@abigail.blackend.org> <4124573F.50403@tech-21.com.hk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4124573F.50403@tech-21.com.hk> User-Agent: Mutt/1.4.2.1i X-Useless-Header: blackend.org X-Operating-System: FreeBSD 4.10-PRERELEASE cc: Kris Kennaway cc: freebsd-current@freebsd.org cc: Mike Tancsa Subject: Re: Weird performances: -CURRENT vs 5.2.1 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Aug 2004 09:00:40 -0000 On Thu, Aug 19, 2004 at 03:31:11PM +0800, sam wrote: > >And then do a: > > > >ln -s aj /etc/malloc.conf > > > > > This looks like a trick. "aj" is actually not existed in the system. > You meant created a malloc.conf pointing to a non-exist aj for the > improvment of the malloc operation? > > root@fbsd [3:31pm] [...i386/conf]# ls -l /etc/malloc.conf > lrwxr-xr-x 1 root wheel 2 Aug 19 15:31 /etc/malloc.conf@ -> aj > root@fbsd [3:34pm] [...i386/conf]# > > root@fbsd [3:34pm] [...i386/conf]# ls -l /etc/aj > ls: /etc/aj: No such file or directory > root@fbsd [3:34pm] [...i386/conf]# > It's just a way to pass flags to malloc system, it's not interpreted as a file; an environment variable (MALLOC_OPTIONS) could be used for the same purpose. You just have to be sure to not "mistype" your flags as I did recently :) Marc