From owner-cvs-all@FreeBSD.ORG Mon Dec 6 18:18:37 2004 Return-Path: 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 09E6B16A4CE; Mon, 6 Dec 2004 18:18:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D939743D6B; Mon, 6 Dec 2004 18:18:36 +0000 (GMT) (envelope-from phk@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 iB6IIaka098926; Mon, 6 Dec 2004 18:18:36 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id iB6IIaeY098925; Mon, 6 Dec 2004 18:18:36 GMT (envelope-from phk) Message-Id: <200412061818.iB6IIaeY098925@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 6 Dec 2004 18:18:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys mount.h src/sys/kern vfs_mount.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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: Mon, 06 Dec 2004 18:18:37 -0000 phk 2004-12-06 18:18:36 UTC FreeBSD src repository Modified files: sys/sys mount.h sys/kern vfs_mount.c Log: Add more functions for handling mount arguments in VFS_MOUNT(): vfs_flagopt() for binary/boolean options. vfs_getopts() for string options vfs_filteropt() to check for unknown options. vfs_scanopt() for scanf() like processing of options. Also add function for setting the stat.f_mntfromname field. Revision Changes Path 1.165 +112 -0 src/sys/kern/vfs_mount.c 1.186 +5 -0 src/sys/sys/mount.h