diff options
author | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-11-06 00:24:18 +0000 |
---|---|---|
committer | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-11-06 00:24:18 +0000 |
commit | 4dc79549a42bec757a9f52d81349efb30269fc12 (patch) | |
tree | d9180b6c99c084cf790ca58a348ade8a326ca3af /sys/ufs | |
parent | ec9fa158749979992f4706657758fc986fc5716d (diff) |
Replace obsolete comment with one that better describes reality.
Diffstat (limited to 'sys/ufs')
-rw-r--r-- | sys/ufs/ext2fs/ext2fs_vfsops.c | 4 | ||||
-rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 4 | ||||
-rw-r--r-- | sys/ufs/lfs/lfs_vfsops.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_vfsops.c b/sys/ufs/ext2fs/ext2fs_vfsops.c index 9493378d3cf..9a56f711089 100644 --- a/sys/ufs/ext2fs/ext2fs_vfsops.c +++ b/sys/ufs/ext2fs/ext2fs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ext2fs_vfsops.c,v 1.39 2005/10/06 17:43:14 pedro Exp $ */ +/* $OpenBSD: ext2fs_vfsops.c,v 1.40 2005/11/06 00:24:17 pedro Exp $ */ /* $NetBSD: ext2fs_vfsops.c,v 1.1 1997/06/11 09:34:07 bouyer Exp $ */ /* @@ -764,7 +764,7 @@ ext2fs_sync_vnode(struct vnode *vp, void *args) * go through the inodes to write those that have been modified; * initiate the writing of the super block if it has been modified. * - * Note: we are always called with the filesystem marked `MPBUSY'. + * Should always be called with the mount point locked. */ int ext2fs_sync(mp, waitfor, cred, p) diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index fcd6f5987b5..75d02458c05 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs_vfsops.c,v 1.72 2005/11/05 23:24:43 pedro Exp $ */ +/* $OpenBSD: ffs_vfsops.c,v 1.73 2005/11/06 00:24:17 pedro Exp $ */ /* $NetBSD: ffs_vfsops.c,v 1.19 1996/02/09 22:22:26 christos Exp $ */ /* @@ -1034,7 +1034,7 @@ ffs_sync_vnode(struct vnode *vp, void *arg) { * go through the inodes to write those that have been modified; * initiate the writing of the super block if it has been modified. * - * Note: we are always called with the filesystem marked `MPBUSY'. + * Should always be called with the mount point locked. */ int ffs_sync(mp, waitfor, cred, p) diff --git a/sys/ufs/lfs/lfs_vfsops.c b/sys/ufs/lfs/lfs_vfsops.c index 8f1b11d0d49..eec6edfdbb1 100644 --- a/sys/ufs/lfs/lfs_vfsops.c +++ b/sys/ufs/lfs/lfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lfs_vfsops.c,v 1.20 2005/07/03 20:14:02 drahn Exp $ */ +/* $OpenBSD: lfs_vfsops.c,v 1.21 2005/11/06 00:24:17 pedro Exp $ */ /* $NetBSD: lfs_vfsops.c,v 1.11 1996/03/25 12:53:35 pk Exp $ */ /* @@ -442,7 +442,7 @@ lfs_statfs(mp, sbp, p) * go through the inodes to write those that have been modified; * initiate the writing of the super block if it has been modified. * - * Note: we are always called with the filesystem marked `MPBUSY'. + * Should always be called with the mount point locked. */ int lfs_sync(mp, waitfor, cred, p) |