diff options
Diffstat (limited to 'sys/nfs/nfs_vfsops.c')
-rw-r--r-- | sys/nfs/nfs_vfsops.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/sys/nfs/nfs_vfsops.c b/sys/nfs/nfs_vfsops.c index 024416981e2..fae12217f71 100644 --- a/sys/nfs/nfs_vfsops.c +++ b/sys/nfs/nfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_vfsops.c,v 1.122 2018/07/02 20:56:22 bluhm Exp $ */ +/* $OpenBSD: nfs_vfsops.c,v 1.123 2019/12/26 13:28:49 bluhm Exp $ */ /* $NetBSD: nfs_vfsops.c,v 1.46.4.1 1996/05/25 22:40:35 fvdl Exp $ */ /* @@ -96,19 +96,19 @@ int nfs_fhtovp(struct mount *, struct fid *, struct vnode **); * nfs vfs operations. */ const struct vfsops nfs_vfsops = { - nfs_mount, - nfs_start, - nfs_unmount, - nfs_root, - nfs_quotactl, - nfs_statfs, - nfs_sync, - nfs_vget, - nfs_fhtovp, - nfs_vptofh, - nfs_vfs_init, - nfs_sysctl, - nfs_checkexp + .vfs_mount = nfs_mount, + .vfs_start = nfs_start, + .vfs_unmount = nfs_unmount, + .vfs_root = nfs_root, + .vfs_quotactl = nfs_quotactl, + .vfs_statfs = nfs_statfs, + .vfs_sync = nfs_sync, + .vfs_vget = nfs_vget, + .vfs_fhtovp = nfs_fhtovp, + .vfs_vptofh = nfs_vptofh, + .vfs_init = nfs_vfs_init, + .vfs_sysctl = nfs_sysctl, + .vfs_checkexp = nfs_checkexp, }; /* |