diff options
Diffstat (limited to 'sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c')
-rw-r--r-- | sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c b/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c index be95936..c894095 100644 --- a/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c +++ b/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c @@ -115,6 +115,7 @@ static vop_setextattr_t _xfs_setextattr; static vop_strategy_t _xfs_strategy; static vop_symlink_t _xfs_symlink; static vop_write_t _xfs_write; +static vop_vptofh_t _xfs_vptofh; struct vop_vector xfs_vnops = { .vop_default = &default_vnodeops, @@ -148,6 +149,7 @@ struct vop_vector xfs_vnops = { .vop_strategy = _xfs_strategy, .vop_symlink = _xfs_symlink, .vop_write = _xfs_write, + .vop_vptofh = _xfs_vptofh, }; /* @@ -171,6 +173,7 @@ struct vop_vector xfs_fifoops = { .vop_reclaim = _xfs_reclaim, .vop_setattr = _xfs_setattr, .vop_write = _xfsfifo_write, + .vop_vptofh = _xfs_vptofh, }; static int @@ -1681,3 +1684,16 @@ vop_deleteextattr { ap->a_cred, error); return (error); } + +static int +_xfs_vptofh(struct vop_vptofh_args *ap) +/* +vop_vptofh { + IN struct vnode *a_vp; + IN struct fid *a_fhp; +}; +*/ +{ + printf("xfs_vptofh"); + return ENOSYS; +} |