diff options
Diffstat (limited to 'sys/fs/unionfs/union_vfsops.c')
-rw-r--r-- | sys/fs/unionfs/union_vfsops.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/fs/unionfs/union_vfsops.c b/sys/fs/unionfs/union_vfsops.c index def8416..af828ac 100644 --- a/sys/fs/unionfs/union_vfsops.c +++ b/sys/fs/unionfs/union_vfsops.c @@ -496,7 +496,7 @@ union_statfs(mp, sbp, p) static struct vfsops union_vfsops = { union_mount, - vfs_stdstart, + vfs_stdstart, /* underlying start already done */ union_unmount, union_root, vfs_stdquotactl, @@ -504,6 +504,7 @@ static struct vfsops union_vfsops = { vfs_stdsync, /* XXX assumes no cached data on union level */ vfs_stdvget, vfs_stdfhtovp, + vfs_stdcheckexp, vfs_stdvptofh, union_init, }; |