From owner-cvs-src@FreeBSD.ORG Fri Jul 18 10:43:14 2003 Return-Path: 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 9E4D537B401; Fri, 18 Jul 2003 10:43:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B92C43F93; Fri, 18 Jul 2003 10:43:14 -0700 (PDT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h6IHhE0U031977; Fri, 18 Jul 2003 10:43:14 -0700 (PDT) (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h6IHhDBf031976; Fri, 18 Jul 2003 10:43:13 -0700 (PDT) Message-Id: <200307181743.h6IHhDBf031976@repoman.freebsd.org> From: Ian Dowse Date: Fri, 18 Jul 2003 10:43:13 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/mount mount.c src/sbin/umount umount.8 umount.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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, 18 Jul 2003 17:43:15 -0000 iedowse 2003/07/18 10:43:13 PDT FreeBSD src repository Modified files: sbin/mount mount.c sbin/umount umount.8 umount.c Log: When mount(8) is invoked with the `-v' flag, display the filesystem ID for each file system in addition to the normal information. In umount(8), accept filesystem IDs as well as the usual device and path names. This makes it possible to unambiguously specify which file system is to be unmounted even when two or more file systems share the same device and mountpoint names (e.g. NFS mounts from the same export into different chroots). Suggested by: Dan Nelson Revision Changes Path 1.53 +4 -1 src/sbin/mount/mount.c 1.18 +9 -11 src/sbin/umount/umount.8 1.38 +41 -5 src/sbin/umount/umount.c