Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/nfs/
H A Dnfs_subs.c3212 kfree_data_addr(nx->nx_path); in nfsrv_export()
3387 if (strncmp(path, nx->nx_path, MAXPATHLEN)) { in nfsrv_export()
3402 nx->nx_path = kalloc_data(pathlen, Z_WAITOK); in nfsrv_export()
3403 if (!nx->nx_path) { in nfsrv_export()
3409 bcopy(path, nx->nx_path, pathlen); in nfsrv_export()
3415 if (strncmp(nx->nx_path, nx2->nx_path, MAXPATHLEN) > 0) { in nfsrv_export()
3436 if ((nx3 && !strncmp(nx3->nx_path, nx->nx_path, pathlen - 1) && in nfsrv_export()
3437 (nx3->nx_path[pathlen - 1] == '/')) || in nfsrv_export()
3438 (nx2 && !strncmp(nx2->nx_path, nx->nx_path, strlen(nx2->nx_path)) && in nfsrv_export()
3439 (nx->nx_path[strlen(nx2->nx_path)] == '/'))) { in nfsrv_export()
[all …]
H A Dnfs_syscalls.c620 size_t len = strlen(nx->nx_path); in getfh()
624 if (!strncmp(nx->nx_path, ptr, len)) { in getfh()
1699 nxfs->nxfs_path, ((nxfs->nxfs_path[1] && nx->nx_path[0]) ? "/" : ""), in nfssvc_exportstats()
1700 nx->nx_path); in nfssvc_exportstats()
1785 nxfs->nxfs_path, ((nxfs->nxfs_path[1] && nx->nx_path[0]) ? "/" : ""), in nfssvc_userstats()
1786 nx->nx_path); in nfssvc_userstats()
H A Dnfs.h696 char *nx_path; /* exported file system sub-path */ member