From owner-freebsd-questions@FreeBSD.ORG Sat Jun 14 23:19:48 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6C3C1065676 for ; Sat, 14 Jun 2008 23:19:48 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C47648FC13; Sat, 14 Jun 2008 23:19:45 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <48545212.4040006@FreeBSD.org> Date: Sun, 15 Jun 2008 01:19:46 +0200 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.14 (Macintosh/20080421) MIME-Version: 1.0 To: RW References: <20080614224742.17316919@gumby.homeunix.com.> In-Reply-To: <20080614224742.17316919@gumby.homeunix.com.> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: md devices mounted with async X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2008 23:19:48 -0000 RW wrote: > mdmfs(8) has an example of a malloc-backed md device mounted with the > async option. Is there any point in doing this with malloc and vnode > devices? In neither case does a write to the file-system require a write > to a physical disk. Well, for vnode devices it does write to the disk, but that isn't the point; in both cases you are writing to the filesystem that is mounted on top of the md, so that will be faster if it is mounted async. Kris