Home
last modified time | relevance | path

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

/xnu-8796.141.3/bsd/nfs/
H A Dnfs_subs.c2022 nx->nx_fh.nfh_xh.nxh_flags = NXHF_INVALIDFH; in nfsrv_export()
2025 if ((nx->nx_fh.nfh_xh.nxh_version != htonl(NFS_FH_VERSION)) || in nfsrv_export()
2026 (nx->nx_fh.nfh_xh.nxh_flags & NXHF_INVALIDFH)) { in nfsrv_export()
2028 nx->nx_fh.nfh_xh.nxh_version = htonl(NFS_FH_VERSION); in nfsrv_export()
2029 nx->nx_fh.nfh_xh.nxh_fsid = htonl(nx->nx_fs->nxfs_id); in nfsrv_export()
2030 nx->nx_fh.nfh_xh.nxh_expid = htonl(nx->nx_id); in nfsrv_export()
2031 nx->nx_fh.nfh_xh.nxh_flags = 0; in nfsrv_export()
2032 nx->nx_fh.nfh_xh.nxh_reserved = 0; in nfsrv_export()
2033 nx->nx_fh.nfh_fhp = (u_char*)&nx->nx_fh.nfh_xh; in nfsrv_export()
2071 nx->nx_fh.nfh_xh.nxh_fidlen = nx->nx_fh.nfh_len; in nfsrv_export()
[all …]
H A Dnfs_syscalls.c382 nfh.nfh_xh.nxh_version = htonl(NFS_FH_VERSION); in getfh()
383 nfh.nfh_xh.nxh_fsid = htonl(nxfs->nxfs_id); in getfh()
384 nfh.nfh_xh.nxh_expid = htonl(nx->nx_id); in getfh()
385 nfh.nfh_xh.nxh_flags = 0; in getfh()
386 nfh.nfh_xh.nxh_reserved = 0; in getfh()
392 nfh.nfh_xh.nxh_fidlen = nfh.nfh_len; in getfh()
393 nfh.nfh_len += sizeof(nfh.nfh_xh); in getfh()
394 nfh.nfh_fhp = (u_char*)&nfh.nfh_xh; in getfh()
466 nfh.nfh_fhp = (u_char*)&nfh.nfh_xh; in fhopen()
H A Dnfs.h476 struct nfs_exphandle nfh_xh; /* export handle */ member