diff options
author | alfred <alfred@FreeBSD.org> | 1999-09-11 00:46:08 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 1999-09-11 00:46:08 +0000 |
commit | b9136a6115cbac97ab114f16b1aacf4eb20ad2c1 (patch) | |
tree | 783daf81f8570ef14570d4a5a6fc45f15ec1cbf5 /sys/ntfs | |
parent | a9f7b5ee698afe56d1167bfa395f23b1fff1730c (diff) | |
download | FreeBSD-src-b9136a6115cbac97ab114f16b1aacf4eb20ad2c1.zip FreeBSD-src-b9136a6115cbac97ab114f16b1aacf4eb20ad2c1.tar.gz |
Seperate the export check in VFS_FHTOVP, exports are now checked via
VFS_CHECKEXP.
Add fh(open|stat|stafs) syscalls to allow userland to query filesystems
based on (network) filehandle.
Obtained from: NetBSD
Diffstat (limited to 'sys/ntfs')
-rw-r--r-- | sys/ntfs/ntfs_vfsops.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/ntfs/ntfs_vfsops.c b/sys/ntfs/ntfs_vfsops.c index 4106fc3..a77647e 100644 --- a/sys/ntfs/ntfs_vfsops.c +++ b/sys/ntfs/ntfs_vfsops.c @@ -93,9 +93,10 @@ static int ntfs_vptofh __P((struct vnode *, struct fid *)); static int ntfs_init __P((struct vfsconf *)); #if 0 /* may be implemented at a later date */ static int ntfs_fhtovp __P((struct mount *, struct fid *, - struct sockaddr *, struct vnode **, - int *, struct ucred **)); -#endif + struct vnode **)); +static int ntfs_checkexp __P((struct vnode *, struct mbuf *, + int *, struct ucred **)); +#endif /* 0, default ops in FreeBSD */ #elif defined(__NetBSD__) static void ntfs_init __P((void)); static int ntfs_fhtovp __P((struct mount *, struct fid *, @@ -952,6 +953,7 @@ static struct vfsops ntfs_vfsops = { vfs_stdsync, ntfs_vget, vfs_stdfhtovp, + vfs_stdcheckexp, vfs_stdvptofh, ntfs_init, NULL |