From owner-freebsd-current@FreeBSD.ORG Thu Jan 18 20:43:54 2007 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5AD8716A412 for ; Thu, 18 Jan 2007 20:43:54 +0000 (UTC) (envelope-from rosti.bsd@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.191]) by mx1.freebsd.org (Postfix) with ESMTP id E530413C457 for ; Thu, 18 Jan 2007 20:43:53 +0000 (UTC) (envelope-from rosti.bsd@gmail.com) Received: by nf-out-0910.google.com with SMTP id k27so289554nfc for ; Thu, 18 Jan 2007 12:43:53 -0800 (PST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:from:to:cc:subject:message-id:in-reply-to:references:x-mailer:mime-version:content-type:content-transfer-encoding; b=RmlnNMHa1WCIQJeEUA6JIYbkVhcT7oX+OAMbUn8sxW+1ky/hrWF7SWnVZs6U4XQ2jd+q3MnThcnZF9FJc36w09E6lT6/6RRkz70YUhSDUAnx6YdCdLwgsK/SyUptqty3Cx8XGkkk+WdASnSR8kdexeUriKKdxggcmom0vC+oWd4= Received: by 10.49.21.8 with SMTP id y8mr1300082nfi.1169151474631; Thu, 18 Jan 2007 12:17:54 -0800 (PST) Received: from saturn.lan ( [80.179.18.46]) by mx.google.com with ESMTP id k23sm3174124nfc.2007.01.18.12.17.53; Thu, 18 Jan 2007 12:17:54 -0800 (PST) Date: Thu, 18 Jan 2007 22:17:49 +0200 From: Rostislav Krasny To: Craig Rodrigues Message-Id: <20070118221749.3be589d9.rosti.bsd@gmail.com> In-Reply-To: <20070118134936.GA7391@crodrigues.org> References: <20070118134936.GA7391@crodrigues.org> X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org, freebsd-arch@freebsd.org Subject: Re: [RFC] mount(8) can figure out fstype X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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, 18 Jan 2007 20:43:54 -0000 On Thu, 18 Jan 2007 08:49:36 -0500 Craig Rodrigues wrote: > Using this patch, I have been able to do: > mount /dev/blah /mnt > > and mount a UFS, cd9660, or FAT filesystem, depending on what filesystem > is on the /dev/blah device. > > Comments? OpenBSD already has such a functionality. It uses readlabelfs(3) for this. What disadvantages or advantages does it have beside your implementation?