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) | |
Notes
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 6d15b21f36f11..db5ecc6a3441b 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 5ba4395456548..c73d364fdf817 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; { |
