Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/nfs/
H A Dnfs_subs.c3475 nx->nx_fh.nfh_xh.nxh_flags = NXHF_INVALIDFH; in nfsrv_export()
3478 if ((nx->nx_fh.nfh_xh.nxh_version != htonl(NFS_FH_VERSION)) || in nfsrv_export()
3479 (nx->nx_fh.nfh_xh.nxh_flags & NXHF_INVALIDFH)) { in nfsrv_export()
3481 nx->nx_fh.nfh_xh.nxh_version = htonl(NFS_FH_VERSION); in nfsrv_export()
3482 nx->nx_fh.nfh_xh.nxh_fsid = htonl(nx->nx_fs->nxfs_id); in nfsrv_export()
3483 nx->nx_fh.nfh_xh.nxh_expid = htonl(nx->nx_id); in nfsrv_export()
3484 nx->nx_fh.nfh_xh.nxh_flags = 0; in nfsrv_export()
3485 nx->nx_fh.nfh_xh.nxh_reserved = 0; in nfsrv_export()
3486 nx->nx_fh.nfh_fhp = (u_char*)&nx->nx_fh.nfh_xh; in nfsrv_export()
3524 nx->nx_fh.nfh_xh.nxh_fidlen = nx->nx_fh.nfh_len; in nfsrv_export()
[all …]
H A Dnfs_syscalls.c634 nfh.nfh_xh.nxh_version = htonl(NFS_FH_VERSION); in getfh()
635 nfh.nfh_xh.nxh_fsid = htonl(nxfs->nxfs_id); in getfh()
636 nfh.nfh_xh.nxh_expid = htonl(nx->nx_id); in getfh()
637 nfh.nfh_xh.nxh_flags = 0; in getfh()
638 nfh.nfh_xh.nxh_reserved = 0; in getfh()
644 nfh.nfh_xh.nxh_fidlen = nfh.nfh_len; in getfh()
645 nfh.nfh_len += sizeof(nfh.nfh_xh); in getfh()
646 nfh.nfh_fhp = (u_char*)&nfh.nfh_xh; in getfh()
720 nfh.nfh_fhp = (u_char*)&nfh.nfh_xh; in fhopen()
H A Dnfs.h475 struct nfs_exphandle nfh_xh; /* export handle */ member