diff options
author | jeff <jeff@FreeBSD.org> | 2005-03-24 07:39:03 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2005-03-24 07:39:03 +0000 |
commit | 56f1fc71890fea1c816625e7aec103c5369f7903 (patch) | |
tree | d5cbecebcb2ab6c20d4bc8b56080893a52544674 /sys/nfsclient/nfs_vfsops.c | |
parent | 226bf6ead4eae284f20c2e0b92f5dd66207a9854 (diff) | |
download | FreeBSD-src-56f1fc71890fea1c816625e7aec103c5369f7903.zip FreeBSD-src-56f1fc71890fea1c816625e7aec103c5369f7903.tar.gz |
- Update vfs_root implementations to match the new prototype. None of
these filesystems will support shared locks until they are explicitly
modified to do so. Careful review must be done to ensure that this
is safe for each individual filesystem.
Sponsored by: Isilon Systems, Inc.
Diffstat (limited to 'sys/nfsclient/nfs_vfsops.c')
-rw-r--r-- | sys/nfsclient/nfs_vfsops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/nfsclient/nfs_vfsops.c b/sys/nfsclient/nfs_vfsops.c index 435d6a5..8f77ccf 100644 --- a/sys/nfsclient/nfs_vfsops.c +++ b/sys/nfsclient/nfs_vfsops.c @@ -932,7 +932,7 @@ nfs_unmount(struct mount *mp, int mntflags, struct thread *td) * Return root of a filesystem */ static int -nfs_root(struct mount *mp, struct vnode **vpp, struct thread *td) +nfs_root(struct mount *mp, int flags, struct vnode **vpp, struct thread *td) { struct vnode *vp; struct nfsmount *nmp; |