Home
last modified time | relevance | path

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

/xnu-8792.41.9/bsd/nfs/
H A Dnfs_subs.c2011 nx->nx_fh.nfh_xh.nxh_flags = NXHF_INVALIDFH; in nfsrv_export()
2014 if ((nx->nx_fh.nfh_xh.nxh_version != htonl(NFS_FH_VERSION)) || in nfsrv_export()
2015 (nx->nx_fh.nfh_xh.nxh_flags & NXHF_INVALIDFH)) { in nfsrv_export()
2017 nx->nx_fh.nfh_xh.nxh_version = htonl(NFS_FH_VERSION); in nfsrv_export()
2018 nx->nx_fh.nfh_xh.nxh_fsid = htonl(nx->nx_fs->nxfs_id); in nfsrv_export()
2019 nx->nx_fh.nfh_xh.nxh_expid = htonl(nx->nx_id); in nfsrv_export()
2020 nx->nx_fh.nfh_xh.nxh_flags = 0; in nfsrv_export()
2021 nx->nx_fh.nfh_xh.nxh_reserved = 0; in nfsrv_export()
2022 nx->nx_fh.nfh_fhp = (u_char*)&nx->nx_fh.nfh_xh; in nfsrv_export()
2060 nx->nx_fh.nfh_xh.nxh_fidlen = nx->nx_fh.nfh_len; in nfsrv_export()
[all …]
H A Dnfs_syscalls.c351 nfh.nfh_xh.nxh_version = htonl(NFS_FH_VERSION); in getfh()
352 nfh.nfh_xh.nxh_fsid = htonl(nxfs->nxfs_id); in getfh()
353 nfh.nfh_xh.nxh_expid = htonl(nx->nx_id); in getfh()
354 nfh.nfh_xh.nxh_flags = 0; in getfh()
355 nfh.nfh_xh.nxh_reserved = 0; in getfh()
361 nfh.nfh_xh.nxh_fidlen = nfh.nfh_len; in getfh()
362 nfh.nfh_len += sizeof(nfh.nfh_xh); in getfh()
363 nfh.nfh_fhp = (u_char*)&nfh.nfh_xh; in getfh()
435 nfh.nfh_fhp = (u_char*)&nfh.nfh_xh; in fhopen()
H A Dnfs.h475 struct nfs_exphandle nfh_xh; /* export handle */ member