summaryrefslogtreecommitdiffstats
path: root/sys/fs/umapfs
diff options
context:
space:
mode:
authorkan <kan@FreeBSD.org>2002-10-19 22:12:19 +0000
committerkan <kan@FreeBSD.org>2002-10-19 22:12:19 +0000
commit5b0d8c1af4b607f818fe94434ae5f1d309b9722b (patch)
tree5787baa040d4bfb9adee5e71f16881feb8a0811d /sys/fs/umapfs
parent6f9d4eb33738f900d5cfe485342596acd9e2061e (diff)
downloadFreeBSD-src-5b0d8c1af4b607f818fe94434ae5f1d309b9722b.zip
FreeBSD-src-5b0d8c1af4b607f818fe94434ae5f1d309b9722b.tar.gz
style(9)
Approved by: obrien
Diffstat (limited to 'sys/fs/umapfs')
-rw-r--r--sys/fs/umapfs/umap_vfsops.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/fs/umapfs/umap_vfsops.c b/sys/fs/umapfs/umap_vfsops.c
index db6371c..442c906 100644
--- a/sys/fs/umapfs/umap_vfsops.c
+++ b/sys/fs/umapfs/umap_vfsops.c
@@ -260,6 +260,7 @@ umapfs_start(mp, flags, td)
int flags;
struct thread *td;
{
+
return (0);
/* return (VFS_START(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, flags, td)); */
}
@@ -338,6 +339,7 @@ umapfs_quotactl(mp, cmd, uid, arg, td)
caddr_t arg;
struct thread *td;
{
+
return (VFS_QUOTACTL(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, cmd, uid, arg, td));
}
@@ -410,7 +412,7 @@ umapfs_fhtovp(mp, fidp, vpp)
struct fid *fidp;
struct vnode **vpp;
{
-
+
return (VFS_FHTOVP(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, fidp, vpp));
}
@@ -422,7 +424,7 @@ umapfs_checkexp(mp, nam, exflagsp, credanonp)
struct ucred **credanonp;
{
- return (VFS_CHECKEXP(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, nam,
+ return (VFS_CHECKEXP(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, nam,
exflagsp, credanonp));
}
@@ -431,6 +433,7 @@ umapfs_vptofh(vp, fhp)
struct vnode *vp;
struct fid *fhp;
{
+
return (VFS_VPTOFH(UMAPVPTOLOWERVP(vp), fhp));
}
@@ -443,10 +446,10 @@ umapfs_extattrctl(mp, cmd, filename_vp, namespace, attrname, td)
const char *attrname;
struct thread *td;
{
+
return (VFS_EXTATTRCTL(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, cmd,
filename_vp, namespace, attrname, td));
-}
-
+}
static struct vfsops umap_vfsops = {
umapfs_mount,
OpenPOWER on IntegriCloud