summaryrefslogtreecommitdiffstats
path: root/sys/fs/unionfs
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2005-01-13 18:59:48 +0000
committerphk <phk@FreeBSD.org>2005-01-13 18:59:48 +0000
commit7617afd15d1be6e95869a5fb4236409d5e7f5f2c (patch)
treed75493b400c818d9baa0cbc348ed34597bba177e /sys/fs/unionfs
parent20067523affa6535f5dd33cfec8b3d14c30fb812 (diff)
downloadFreeBSD-src-7617afd15d1be6e95869a5fb4236409d5e7f5f2c.zip
FreeBSD-src-7617afd15d1be6e95869a5fb4236409d5e7f5f2c.tar.gz
Whitespace in vop_vector{} initializations.
Diffstat (limited to 'sys/fs/unionfs')
-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