Home
last modified time | relevance | path

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

/xnu-11417.121.6/bsd/nfs/
H A Dnfs_syscalls.c230 if (!strncmp(nxfs->nxfs_path, ptr, MAXPATHLEN)) { in nfsrv_find_exportfs()
234 if (nxfs && strncmp(nxfs->nxfs_path, ptr, strlen(nxfs->nxfs_path))) { in nfsrv_find_exportfs()
242 nfsrv_export_remainder(char *path, char *nxfs_path) in nfsrv_export_remainder() argument
250 if (!strncmp(path, nxfs_path, strlen(nxfs_path))) { in nfsrv_export_remainder()
251 return path + strlen(nxfs_path); in nfsrv_export_remainder()
255 UIO_SYSSPACE, CAST_USER_ADDR_T(nxfs_path), vfs_context_current()); in nfsrv_export_remainder()
361 if ((ptr = nfsrv_export_remainder(path, nxfs->nxfs_path)) == NULL) { in getfh()
1443 nxfs->nxfs_path, ((nxfs->nxfs_path[1] && nx->nx_path[0]) ? "/" : ""), in nfssvc_exportstats()
1529 nxfs->nxfs_path, ((nxfs->nxfs_path[1] && nx->nx_path[0]) ? "/" : ""), in nfssvc_userstats()
H A Dnfs_subs.c1668 char path[MAXPATHLEN], *nxfs_path; in nfsrv_export() local
1714 mp = vfs_getvfs_by_mntonname(nxfs->nxfs_path); in nfsrv_export()
1736 kfree_data_addr(nxfs->nxfs_path); in nfsrv_export()
1772 if (nfsrv_export_compare(path, nxfs->nxfs_path)) { in nfsrv_export()
1779 UIO_SYSSPACE, CAST_USER_ADDR_T(nxfs->nxfs_path), ctx); in nfsrv_export()
1791 mp = nfsrv_getvfs_by_mntonname(nxfs->nxfs_path); in nfsrv_export()
1852 nxfs_path = mp->mnt_vfsstat.f_mntonname; in nfsrv_export()
1855 nxfs_path = path; in nfsrv_export()
1858 nxfs->nxfs_path = kalloc_data(nxfs_pathlen, Z_WAITOK); in nfsrv_export()
1859 if (!nxfs->nxfs_path) { in nfsrv_export()
[all …]
H A Dnfs.h716 char *nxfs_path; /* exported file system path */ member