diff options
author | Jeff Roberson <jeff@FreeBSD.org> | 2005-03-24 07:39:03 +0000 |
---|---|---|
committer | Jeff Roberson <jeff@FreeBSD.org> | 2005-03-24 07:39:03 +0000 |
commit | a176ceb322674bbe20b1cbe14be5d14000df321c (patch) | |
tree | d5cbecebcb2ab6c20d4bc8b56080893a52544674 /sys/fs | |
parent | d9b2d9f7a29757aedc9a26cbaee520cd505dca80 (diff) | |
download | src-a176ceb322674bbe20b1cbe14be5d14000df321c.tar.gz src-a176ceb322674bbe20b1cbe14be5d14000df321c.zip |
- 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.
Notes
Notes:
svn path=/head/; revision=144059
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/cd9660/cd9660_vfsops.c | 3 | ||||
-rw-r--r-- | sys/fs/coda/coda_vfsops.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c index 6d15b21f36f1..db5ecc6a3441 100644 --- a/sys/fs/cd9660/cd9660_vfsops.c +++ b/sys/fs/cd9660/cd9660_vfsops.c @@ -532,8 +532,9 @@ cd9660_unmount(mp, mntflags, td) * Return root of a filesystem */ static int -cd9660_root(mp, vpp, td) +cd9660_root(mp, flags, vpp, td) struct mount *mp; + int flags; struct vnode **vpp; struct thread *td; { diff --git a/sys/fs/coda/coda_vfsops.c b/sys/fs/coda/coda_vfsops.c index 5ba439545654..c73d364fdf81 100644 --- a/sys/fs/coda/coda_vfsops.c +++ b/sys/fs/coda/coda_vfsops.c @@ -268,8 +268,9 @@ coda_unmount(vfsp, mntflags, td) * find root of cfs */ int -coda_root(vfsp, vpp, td) +coda_root(vfsp, flags, vpp, td) struct mount *vfsp; + int flags; struct vnode **vpp; struct thread *td; { |