diff options
Diffstat (limited to 'sys/ufs')
-rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 2 | ||||
-rw-r--r-- | sys/ufs/mfs/mfs_vfsops.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index 216bb45..ee6fe3e 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -83,6 +83,8 @@ static struct vfsops ufs_vfsops = { ufs_check_export, ffs_vptofh, ffs_init, + vfs_stduninit, + vfs_stdextattrctl, }; VFS_SET(ufs_vfsops, ufs, 0); diff --git a/sys/ufs/mfs/mfs_vfsops.c b/sys/ufs/mfs/mfs_vfsops.c index 268590f..6e034d1 100644 --- a/sys/ufs/mfs/mfs_vfsops.c +++ b/sys/ufs/mfs/mfs_vfsops.c @@ -108,6 +108,8 @@ static struct vfsops mfs_vfsops = { ufs_check_export, ffs_vptofh, mfs_init, + vfs_stduninit, + vfs_stdextattrctl, }; VFS_SET(mfs_vfsops, mfs, 0); |