Home
last modified time | relevance | path

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

/xnu-12377.61.12/bsd/nfs/
H A Dnfs_subs.c1733 kfree_data_addr(nx->nx_path); in nfsrv_export()
1900 if (strncmp(path, nx->nx_path, MAXPATHLEN)) { in nfsrv_export()
1915 nx->nx_path = kalloc_data(pathlen, Z_WAITOK); in nfsrv_export()
1916 if (!nx->nx_path) { in nfsrv_export()
1922 bcopy(path, nx->nx_path, pathlen); in nfsrv_export()
1928 if (strncmp(nx->nx_path, nx2->nx_path, MAXPATHLEN) > 0) { in nfsrv_export()
1949 if ((nx3 && !strncmp(nx3->nx_path, nx->nx_path, pathlen - 1) && in nfsrv_export()
1950 (nx3->nx_path[pathlen - 1] == '/')) || in nfsrv_export()
1951 (nx2 && !strncmp(nx2->nx_path, nx->nx_path, strlen(nx2->nx_path)) && in nfsrv_export()
1952 (nx->nx_path[strlen(nx2->nx_path)] == '/'))) { in nfsrv_export()
[all …]
H A Dnfs_syscalls.c372 size_t len = strlen(nx->nx_path); in getfh()
376 if (!strncmp(nx->nx_path, ptr, len)) { in getfh()
1445 nxfs->nxfs_path, ((nxfs->nxfs_path[1] && nx->nx_path[0]) ? "/" : ""), in nfssvc_exportstats()
1446 nx->nx_path); in nfssvc_exportstats()
1531 nxfs->nxfs_path, ((nxfs->nxfs_path[1] && nx->nx_path[0]) ? "/" : ""), in nfssvc_userstats()
1532 nx->nx_path); in nfssvc_userstats()
H A Dnfs.h701 char *nx_path; /* exported file system sub-path */ member