From owner-cvs-all@FreeBSD.ORG Sat Nov 12 20:12:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68E9016A41F; Sat, 12 Nov 2005 20:12:57 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F3B443D62; Sat, 12 Nov 2005 20:12:57 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id jACKCvjE041356; Sat, 12 Nov 2005 20:12:57 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jACKCvZD041355; Sat, 12 Nov 2005 20:12:57 GMT (envelope-from rodrigc) Message-Id: <200511122012.jACKCvZD041355@repoman.freebsd.org> From: Craig Rodrigues Date: Sat, 12 Nov 2005 20:12:56 +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/mount Makefile extern.h mount.c mount_fs.c mount_ufs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Nov 2005 20:12:57 -0000 rodrigc 2005-11-12 20:12:56 UTC FreeBSD src repository Modified files: sbin/mount Makefile extern.h mount.c mount_ufs.c Added files: sbin/mount mount_fs.c Log: - Minor fixes to raise WARNS level to 6. - Teach the mount program to call the nmount() syscall directly - Preserve existing method of calling mount() for UFS, until we clean things up. - Preserve existing method of forking and calling external mount programs for mfs, msdosfs, nfs, nfs4, ntfs, nwfs, nullfs, portalfs, reiserfs, smbfs, udf, umapfs, unionfs - devfs, linprocfs, procfs, ext2fs call nmount() syscall directly, since that is all those external mount programs were doing Reviewed by: phk Discussed on: arch Revision Changes Path 1.17 +2 -2 src/sbin/mount/Makefile 1.6 +2 -1 src/sbin/mount/extern.h 1.72 +83 -48 src/sbin/mount/mount.c 1.1 +135 -0 src/sbin/mount/mount_fs.c (new) 1.28 +1 -1 src/sbin/mount/mount_ufs.c