Searched defs:fidp (Results 26 - 36 of 36) sorted by relevance

12

/illumos-gate/usr/src/uts/common/fs/tmpfs/
H A Dtmp_vnops.c1749 tmp_fid(struct vnode *vp, struct fid *fidp, caller_context_t *ct) argument
1754 if (fidp->fid_len < (sizeof (struct tfid) - sizeof (ushort_t))) {
1755 fidp->fid_len = sizeof (struct tfid) - sizeof (ushort_t);
1759 tfid = (struct tfid *)fidp;
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs_export.c2285 fid_t *fidp; local
2311 fidp = (fid_t *)&fh->fh_len;
2313 error = VFS_VGET(vfsp, &vp, fidp);
2336 fid_t *fidp; local
2357 fidp = FH3TOFIDP(fh);
2359 error = VFS_VGET(vfsp, &vp, fidp);
2378 fid_t *fidp; local
2396 fidp = (fid_t *)&fh_fmtp->fh4_len;
2421 error = VFS_VGET(vfsp, &vp, fidp);
2428 error = nfs4_vget_pseudo(exi, &vp, fidp);
[all...]
H A Dnfs3_vnops.c4453 nfs3_fid(vnode_t *vp, fid_t *fidp, caller_context_t *ct) argument
4461 if (fidp->fid_len < (ushort_t)rp->r_fh.fh_len) {
4462 fidp->fid_len = rp->r_fh.fh_len;
4465 fidp->fid_len = rp->r_fh.fh_len;
4466 bcopy(rp->r_fh.fh_buf, fidp->fid_data, fidp->fid_len);
H A Dnfs4_vfsops.c2936 nfs4_vget(vfs_t *vfsp, vnode_t **vpp, fid_t *fidp) argument
H A Dnfs4_vnops.c9682 nfs4_fid(vnode_t *vp, fid_t *fidp, caller_context_t *ct) argument
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_vfsops.c84 static int zfs_vget(vfs_t *vfsp, vnode_t **vpp, fid_t *fidp);
1911 zfs_vget(vfs_t *vfsp, vnode_t **vpp, fid_t *fidp) argument
1925 if (fidp->fid_len == LONG_FID_LEN) {
1926 zfid_long_t *zlfid = (zfid_long_t *)fidp;
1944 if (fidp->fid_len == SHORT_FID_LEN || fidp->fid_len == LONG_FID_LEN) {
1945 zfid_short_t *zfid = (zfid_short_t *)fidp;
H A Dzfs_vnops.c4871 zfs_fid(vnode_t *vp, fid_t *fidp, caller_context_t *ct) argument
4893 if (fidp->fid_len < size) {
4894 fidp->fid_len = size;
4899 zfid = (zfid_short_t *)fidp;
4916 zlfid = (zfid_long_t *)fidp;
/illumos-gate/usr/src/uts/common/fs/
H A Dfem.c1012 vhead_fid(vnode_t *vp, fid_t *fidp, caller_context_t *ct) argument
1024 errc = (*func)(arg0, fidp, ct);
1031 errc = (*func)(arg0, fidp, ct);
1844 fshead_vget(vfs_t *vfsp, vnode_t **vpp, fid_t *fidp) argument
1857 errc = (*func)(vfsp, vpp, fidp);
1864 errc = (*func)(arg0, vpp, fidp);
2358 vnext_fid(femarg_t *vf, fid_t *fidp, caller_context_t *ct) argument
2368 return ((*func)(arg0, fidp, ct));
2804 vfsnext_vget(fsemarg_t *vf, vnode_t **vpp, fid_t *fidp) argument
2814 return ((*func)(arg0, vpp, fidp));
[all...]
H A Dvfs.c263 fsop_vget(vfs_t *vfsp, vnode_t **vpp, fid_t *fidp) argument
277 fidp->fid_len == XATTR_FIDSZ)
278 return (xattr_dir_vget(vfsp, vpp, fidp));
280 return (*(vfsp)->vfs_op->vfs_vget)(vfsp, vpp, fidp);
H A Dvnode.c3777 fid_t *fidp,
3782 err = (*(vp)->v_op->vop_fid)(vp, fidp, ct);
3775 fop_fid( vnode_t *vp, fid_t *fidp, caller_context_t *ct) argument
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_vnops.c4344 ufs_fid(struct vnode *vp, struct fid *fidp, caller_context_t *ct) argument
4352 if (fidp->fid_len < (sizeof (struct ufid) - sizeof (ushort_t))) {
4353 fidp->fid_len = sizeof (struct ufid) - sizeof (ushort_t);
4357 ufid = (struct ufid *)fidp;

Completed in 150 milliseconds

12