From owner-freebsd-stable@FreeBSD.ORG Fri May 16 16:48:11 2008 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C69AA106564A; Fri, 16 May 2008 16:48:11 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id 7B7AB8FC0C; Fri, 16 May 2008 16:48:11 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from joshua-aunes-macbook-pro.local ([192.168.254.200]) (authenticated bits=0) by pooker.samsco.org (8.13.8/8.13.8) with ESMTP id m4GGm4Je076855; Fri, 16 May 2008 10:48:04 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <482DBAC4.30101@samsco.org> Date: Fri, 16 May 2008 10:48:04 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.13) Gecko/20080313 SeaMonkey/1.1.9 MIME-Version: 1.0 To: Jeremy Chadwick References: <20080516154848.GA1127@faust.net> <482DB16B.2070402@moneybookers.com> <20080516161017.GA72242@eos.sc1.parodius.com> In-Reply-To: <20080516161017.GA72242@eos.sc1.parodius.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.4 required=3.8 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on pooker.samsco.org Cc: Zoran Kolic , freebsd-stable@freebsd.org, Stefan Lambrev Subject: Re: udf X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 May 2008 16:48:11 -0000 Jeremy Chadwick wrote: > On Fri, May 16, 2008 at 07:08:11PM +0300, Stefan Lambrev wrote: >> From man mount_udf (FreeBSD7) >> >> HISTORY >> The mount_udf utility first appeared in FreeBSD 5.0. >> >> FreeBSD 7.0 March 23, 2002 FreeBSD >> 7.0 >> >> I have no idea for newfs_udf , and what is supposed this to do :) > > It creates a UDF (commonly DVD/DVD Audio) filesystem. NetBSD and > Solaris 10 both have this. > There is no write support in UDF in FreeBSD. When I wrote the fs code, packet writing was the only way to do discrete writes, and it's very hard to make that work with a traditional VM system. Now with DVD+R, it's probably worth someone's time to look at it (though the append-only nature of +R means that there are still some nasty VM complications to deal with). Until that happens, mkisofs can be used to create a static UDF filesystem. Scott