From owner-freebsd-current@FreeBSD.ORG Wed Dec 31 17:08:36 2008 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A86D106564A for ; Wed, 31 Dec 2008 17:08:36 +0000 (UTC) (envelope-from artemb@gmail.com) Received: from mail-ew0-f21.google.com (mail-ew0-f21.google.com [209.85.219.21]) by mx1.freebsd.org (Postfix) with ESMTP id 1A5968FC0C for ; Wed, 31 Dec 2008 17:08:35 +0000 (UTC) (envelope-from artemb@gmail.com) Received: by ewy14 with SMTP id 14so6945761ewy.19 for ; Wed, 31 Dec 2008 09:08:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender :to:subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references :x-google-sender-auth; bh=YipgviD9KYYYB4590iltBakE9f4SUe6AFRcflVMOtQQ=; b=jcXIi5OcrWGaBevmyLJBhyKrvlgTQlWWxuq+LlFU0fJv35ekuAEc0giT95TFv5PgVz 9SdTyvCNkxbbx0wLh3Fb9jFth7Dsd2NOWQ7f/roVBMnsztyOJDvWECFrutrdVAV/xar/ Dm+UfrnV1vRXr55nxn4GtrEwklWbbxQcVfEVk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references:x-google-sender-auth; b=tLr6Ruo66KVqx7xoTaxVCHyK3Yb7KbMrH1dzMCI7t3rhr7pPPPBXJgQCqcprt+9A2E LctluutpVFkQY6o9pPljRKVlo9z++Pi59KTadbDdmAPVnXCjWFbkrrp7IlwliHHkX42x k1EdqNuftUAezDTbf3L5fJ0eRt7fO23J3mJB8= Received: by 10.210.59.14 with SMTP id h14mr4555950eba.16.1230743313940; Wed, 31 Dec 2008 09:08:33 -0800 (PST) Received: by 10.210.49.3 with HTTP; Wed, 31 Dec 2008 09:08:33 -0800 (PST) Message-ID: Date: Wed, 31 Dec 2008 09:08:33 -0800 From: "Artem Belevich" Sender: artemb@gmail.com To: "Boris Samorodov" In-Reply-To: <80044077@bb.ipt.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <80044077@bb.ipt.ru> X-Google-Sender-Auth: 027cee09b378a518 Cc: freebsd-current@freebsd.org Subject: Re: gjournal is not automounted any more 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: Wed, 31 Dec 2008 17:08:36 -0000 > /dev/mirror/gm0.journal /m ufs,async rw 2 2 Looks like there's an error in your fstab. You've added "async" to the filesystem type instead of mount options. It should probably look like this: /dev/mirror/gm0.journal /m ufs async,rw 2 2 Might explain why mount does not like it. --Artem