From owner-cvs-src@FreeBSD.ORG Fri Nov 3 12:02:27 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3DA016A53A; Fri, 3 Nov 2006 12:02:27 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A136443DA6; Fri, 3 Nov 2006 12:02:25 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id kA3C2P2N058702; Fri, 3 Nov 2006 12:02:25 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id kA3C2PVR058700; Fri, 3 Nov 2006 12:02:25 GMT (envelope-from ru) Message-Id: <200611031202.kA3C2PVR058700@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 3 Nov 2006 12:02:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/mdmfs mdmfs.8 mdmfs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Nov 2006 12:02:27 -0000 ru 2006-11-03 12:02:24 UTC FreeBSD src repository Modified files: sbin/mdmfs mdmfs.8 mdmfs.c Log: Remove the -C option as it does more harm than good. To be fully compatible, it would have to (at least): - support the "compat-compat" -T option, - *not* support the -l, -O, and -v options, - default to soft updates being disabled. Worse, the compatibility mode makes it impossible to mount_mfs(8) a file system from fstab(5) with soft updates disabled (-S). [1] Now, the only difference when called as "mount_mfs" or "mfs" (as opposed to "mdmfs") is that the file mode of the mount point is set by default to 01777. All options available to mdmfs(8) are also available to mount_mfs(8); the -C option is still recognized but ignored for backward compatibility. PR: bin/98860 [1] MFC after: 2 weeks Revision Changes Path 1.26 +7 -39 src/sbin/mdmfs/mdmfs.8 1.28 +8 -41 src/sbin/mdmfs/mdmfs.c