summaryrefslogtreecommitdiffstats
path: root/sys/fs/unionfs/union_vnops.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/fs/unionfs/union_vnops.c')
-rw-r--r--sys/fs/unionfs/union_vnops.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/fs/unionfs/union_vnops.c b/sys/fs/unionfs/union_vnops.c
index 94df922..967bec3 100644
--- a/sys/fs/unionfs/union_vnops.c
+++ b/sys/fs/unionfs/union_vnops.c
@@ -2053,6 +2053,7 @@ union_setlabel(ap)
*/
struct vop_vector union_vnodeops = {
.vop_default = &default_vnodeops,
+
.vop_access = union_access,
.vop_aclcheck = union_aclcheck,
.vop_advlock = union_advlock,
@@ -2064,10 +2065,11 @@ struct vop_vector union_vnodeops = {
.vop_deleteextattr = union_deleteextattr,
.vop_destroyvobject = union_destroyvobject,
.vop_fsync = union_fsync,
- .vop_getattr = union_getattr,
.vop_getacl = union_getacl,
- .vop_getextattr = union_getextattr,
- .vop_getvobject = union_getvobject,
+ .vop_getattr = union_getattr,
+ .vop_getextattr = union_getextattr,
+ .vop_getvobject = union_getvobject,
+ .vop_getwritemount = union_getwritemount,
.vop_inactive = union_inactive,
.vop_ioctl = union_ioctl,
.vop_lease = union_lease,
@@ -2084,14 +2086,13 @@ struct vop_vector union_vnodeops = {
.vop_read = union_read,
.vop_readdir = union_readdir,
.vop_readlink = union_readlink,
- .vop_getwritemount = union_getwritemount,
.vop_reclaim = union_reclaim,
.vop_remove = union_remove,
.vop_rename = union_rename,
.vop_rmdir = union_rmdir,
.vop_setacl = union_setacl,
.vop_setattr = union_setattr,
- .vop_setextattr = union_setextattr,
+ .vop_setextattr = union_setextattr,
.vop_setlabel = union_setlabel,
.vop_strategy = union_strategy,
.vop_symlink = union_symlink,
OpenPOWER on IntegriCloud