diff options
author | attilio <attilio@FreeBSD.org> | 2011-05-22 20:41:10 +0000 |
---|---|---|
committer | attilio <attilio@FreeBSD.org> | 2011-05-22 20:41:10 +0000 |
commit | 627bd73cdb2acee5db84ea77c64c5b46decfe9bc (patch) | |
tree | 04ca6a0f0391d681921f7b1a86e91bfc541519c5 /sys/fs/tmpfs/tmpfs_vfsops.c | |
parent | 08bcb681d2e1e3a0707624ad288cb81cd79bed89 (diff) | |
parent | 12ddcc1b33320b2f47fcfadc2a831c63a07b34b3 (diff) | |
download | FreeBSD-src-627bd73cdb2acee5db84ea77c64c5b46decfe9bc.zip FreeBSD-src-627bd73cdb2acee5db84ea77c64c5b46decfe9bc.tar.gz |
MFC
Diffstat (limited to 'sys/fs/tmpfs/tmpfs_vfsops.c')
-rw-r--r-- | sys/fs/tmpfs/tmpfs_vfsops.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/fs/tmpfs/tmpfs_vfsops.c b/sys/fs/tmpfs/tmpfs_vfsops.c index 356be5e..9d23bd2 100644 --- a/sys/fs/tmpfs/tmpfs_vfsops.c +++ b/sys/fs/tmpfs/tmpfs_vfsops.c @@ -71,7 +71,8 @@ MALLOC_DEFINE(M_TMPFSNAME, "tmpfs name", "tmpfs file names"); static int tmpfs_mount(struct mount *); static int tmpfs_unmount(struct mount *, int); static int tmpfs_root(struct mount *, int flags, struct vnode **); -static int tmpfs_fhtovp(struct mount *, struct fid *, struct vnode **); +static int tmpfs_fhtovp(struct mount *, struct fid *, int, + struct vnode **); static int tmpfs_statfs(struct mount *, struct statfs *); /* --------------------------------------------------------------------- */ @@ -341,7 +342,8 @@ tmpfs_root(struct mount *mp, int flags, struct vnode **vpp) /* --------------------------------------------------------------------- */ static int -tmpfs_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp) +tmpfs_fhtovp(struct mount *mp, struct fid *fhp, int flags, + struct vnode **vpp) { boolean_t found; struct tmpfs_fid *tfhp; |