style(9)
Approved by: obrien
This commit is contained in:
parent
c8447553b5
commit
3e8cedc35f
@ -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));
|
||||
}
|
||||
|
||||
@ -431,6 +433,7 @@ umapfs_vptofh(vp, fhp)
|
||||
struct vnode *vp;
|
||||
struct fid *fhp;
|
||||
{
|
||||
|
||||
return (VFS_VPTOFH(UMAPVPTOLOWERVP(vp), fhp));
|
||||
}
|
||||
|
||||
@ -443,11 +446,11 @@ 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,
|
||||
umapfs_start,
|
||||
|
Loading…
Reference in New Issue
Block a user