diff options
Diffstat (limited to 'sys/ufs')
-rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 3 | ||||
-rw-r--r-- | sys/ufs/mfs/mfs_vfsops.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index b3e2345..fb46fcb 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_vfsops.c 8.31 (Berkeley) 5/20/95 - * $Id: ffs_vfsops.c,v 1.71 1998/02/09 06:11:06 eivind Exp $ + * $Id: ffs_vfsops.c,v 1.72 1998/02/25 04:47:04 bde Exp $ */ #include "opt_quota.h" @@ -83,6 +83,7 @@ static struct vfsops ufs_vfsops = { ffs_statfs, ffs_sync, ffs_vget, + vfs_vrele, ffs_fhtovp, ffs_vptofh, ffs_init, diff --git a/sys/ufs/mfs/mfs_vfsops.c b/sys/ufs/mfs/mfs_vfsops.c index e37ead5..735e531 100644 --- a/sys/ufs/mfs/mfs_vfsops.c +++ b/sys/ufs/mfs/mfs_vfsops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mfs_vfsops.c 8.11 (Berkeley) 6/19/95 - * $Id: mfs_vfsops.c,v 1.39 1998/01/24 02:54:56 eivind Exp $ + * $Id: mfs_vfsops.c,v 1.40 1998/02/09 06:11:08 eivind Exp $ */ #include "opt_mfs.h" @@ -95,6 +95,7 @@ static struct vfsops mfs_vfsops = { mfs_statfs, ffs_sync, ffs_vget, + vfs_vrele, ffs_fhtovp, ffs_vptofh, mfs_init, |