Home
last modified time | relevance | path

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

/xnu-11417.140.69/bsd/nfs/
H A Dnfs_subs.c1988 nx->nx_fh.nfh_xh.nxh_flags = NXHF_INVALIDFH; in nfsrv_export()
1991 if ((nx->nx_fh.nfh_xh.nxh_version != htonl(NFS_FH_VERSION)) || in nfsrv_export()
1992 (nx->nx_fh.nfh_xh.nxh_flags & NXHF_INVALIDFH)) { in nfsrv_export()
1994 nx->nx_fh.nfh_xh.nxh_version = htonl(NFS_FH_VERSION); in nfsrv_export()
1995 nx->nx_fh.nfh_xh.nxh_fsid = htonl(nx->nx_fs->nxfs_id); in nfsrv_export()
1996 nx->nx_fh.nfh_xh.nxh_expid = htonl(nx->nx_id); in nfsrv_export()
1997 nx->nx_fh.nfh_xh.nxh_flags = 0; in nfsrv_export()
1998 nx->nx_fh.nfh_xh.nxh_reserved = 0; in nfsrv_export()
1999 nx->nx_fh.nfh_fhp = (u_char*)&nx->nx_fh.nfh_xh; in nfsrv_export()
2037 nx->nx_fh.nfh_xh.nxh_fidlen = nx->nx_fh.nfh_len; in nfsrv_export()
[all …]
H A Dnfs_syscalls.c386 nfh.nfh_xh.nxh_version = htonl(NFS_FH_VERSION); in getfh()
387 nfh.nfh_xh.nxh_fsid = htonl(nxfs->nxfs_id); in getfh()
388 nfh.nfh_xh.nxh_expid = htonl(nx->nx_id); in getfh()
389 nfh.nfh_xh.nxh_flags = 0; in getfh()
390 nfh.nfh_xh.nxh_reserved = 0; in getfh()
396 nfh.nfh_xh.nxh_fidlen = nfh.nfh_len; in getfh()
397 nfh.nfh_len += sizeof(nfh.nfh_xh); in getfh()
398 nfh.nfh_fhp = (u_char*)&nfh.nfh_xh; in getfh()
470 nfh.nfh_fhp = (u_char*)&nfh.nfh_xh; in fhopen()
H A Dnfs.h480 struct nfs_exphandle nfh_xh; /* export handle */ member