Home
last modified time | relevance | path

Searched refs:nfh_xh (Results 1 – 3 of 3) sorted by relevance

/xnu-11417.101.15/bsd/nfs/
H A Dnfs_subs.c1987 nx->nx_fh.nfh_xh.nxh_flags = NXHF_INVALIDFH; in nfsrv_export()
1990 if ((nx->nx_fh.nfh_xh.nxh_version != htonl(NFS_FH_VERSION)) || in nfsrv_export()
1991 (nx->nx_fh.nfh_xh.nxh_flags & NXHF_INVALIDFH)) { in nfsrv_export()
1993 nx->nx_fh.nfh_xh.nxh_version = htonl(NFS_FH_VERSION); in nfsrv_export()
1994 nx->nx_fh.nfh_xh.nxh_fsid = htonl(nx->nx_fs->nxfs_id); in nfsrv_export()
1995 nx->nx_fh.nfh_xh.nxh_expid = htonl(nx->nx_id); in nfsrv_export()
1996 nx->nx_fh.nfh_xh.nxh_flags = 0; in nfsrv_export()
1997 nx->nx_fh.nfh_xh.nxh_reserved = 0; in nfsrv_export()
1998 nx->nx_fh.nfh_fhp = (u_char*)&nx->nx_fh.nfh_xh; in nfsrv_export()
2036 nx->nx_fh.nfh_xh.nxh_fidlen = nx->nx_fh.nfh_len; in nfsrv_export()
[all …]
H A Dnfs_syscalls.c384 nfh.nfh_xh.nxh_version = htonl(NFS_FH_VERSION); in getfh()
385 nfh.nfh_xh.nxh_fsid = htonl(nxfs->nxfs_id); in getfh()
386 nfh.nfh_xh.nxh_expid = htonl(nx->nx_id); in getfh()
387 nfh.nfh_xh.nxh_flags = 0; in getfh()
388 nfh.nfh_xh.nxh_reserved = 0; in getfh()
394 nfh.nfh_xh.nxh_fidlen = nfh.nfh_len; in getfh()
395 nfh.nfh_len += sizeof(nfh.nfh_xh); in getfh()
396 nfh.nfh_fhp = (u_char*)&nfh.nfh_xh; in getfh()
468 nfh.nfh_fhp = (u_char*)&nfh.nfh_xh; in fhopen()
H A Dnfs.h480 struct nfs_exphandle nfh_xh; /* export handle */ member