diff options
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/nullfs/null_vfsops.c | 13 | ||||
-rw-r--r-- | sys/fs/umapfs/umap_vfsops.c | 12 |
2 files changed, 15 insertions, 10 deletions
diff --git a/sys/fs/nullfs/null_vfsops.c b/sys/fs/nullfs/null_vfsops.c index b852cc4..c9a6801 100644 --- a/sys/fs/nullfs/null_vfsops.c +++ b/sys/fs/nullfs/null_vfsops.c @@ -73,7 +73,9 @@ static int nullfs_unmount(struct mount *mp, int mntflags, struct proc *p); static int nullfs_vget(struct mount *mp, ino_t ino, struct vnode **vpp); static int nullfs_vptofh(struct vnode *vp, struct fid *fhp); static int nullfs_extattrctl(struct mount *mp, int cmd, - const char *attrname, caddr_t arg, struct proc *p); + struct vnode *filename_vp, + int namespace, const char *attrname, + struct proc *p); /* * Mount null layer @@ -408,15 +410,16 @@ nullfs_vptofh(vp, fhp) } static int -nullfs_extattrctl(mp, cmd, attrname, arg, p) +nullfs_extattrctl(mp, cmd, filename_vp, namespace, attrname, p) struct mount *mp; int cmd; + struct vnode *filename_vp; + int namespace; const char *attrname; - caddr_t arg; struct proc *p; { - return VFS_EXTATTRCTL(MOUNTTONULLMOUNT(mp)->nullm_vfs, cmd, attrname, - arg, p); + return VFS_EXTATTRCTL(MOUNTTONULLMOUNT(mp)->nullm_vfs, cmd, filename_vp, + namespace, attrname, p); } diff --git a/sys/fs/umapfs/umap_vfsops.c b/sys/fs/umapfs/umap_vfsops.c index 768ad48..abd1b07 100644 --- a/sys/fs/umapfs/umap_vfsops.c +++ b/sys/fs/umapfs/umap_vfsops.c @@ -74,7 +74,8 @@ static int umapfs_vget __P((struct mount *mp, ino_t ino, struct vnode **vpp)); static int umapfs_vptofh __P((struct vnode *vp, struct fid *fhp)); static int umapfs_extattrctl __P((struct mount *mp, int cmd, - const char *attrname, caddr_t arg, + struct vnode *filename_vp, + int namespace, const char *attrname, struct proc *p)); /* @@ -430,15 +431,16 @@ umapfs_vptofh(vp, fhp) } static int -umapfs_extattrctl(mp, cmd, attrname, arg, p) +umapfs_extattrctl(mp, cmd, filename_vp, namespace, attrname, p) struct mount *mp; int cmd; + struct vnode *filename_vp; + int namespace; const char *attrname; - caddr_t arg; struct proc *p; { - return (VFS_EXTATTRCTL(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, cmd, attrname, - arg, p)); + return (VFS_EXTATTRCTL(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, cmd, + filename_vp, namespace, attrname, p)); } |