Home
last modified time | relevance | path

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

/xnu-11417.121.6/bsd/nfs/
H A Dnfs_subs.c1732 kfree_data_addr(nx->nx_path); in nfsrv_export()
1899 if (strncmp(path, nx->nx_path, MAXPATHLEN)) { in nfsrv_export()
1914 nx->nx_path = kalloc_data(pathlen, Z_WAITOK); in nfsrv_export()
1915 if (!nx->nx_path) { in nfsrv_export()
1921 bcopy(path, nx->nx_path, pathlen); in nfsrv_export()
1927 if (strncmp(nx->nx_path, nx2->nx_path, MAXPATHLEN) > 0) { in nfsrv_export()
1948 if ((nx3 && !strncmp(nx3->nx_path, nx->nx_path, pathlen - 1) && in nfsrv_export()
1949 (nx3->nx_path[pathlen - 1] == '/')) || in nfsrv_export()
1950 (nx2 && !strncmp(nx2->nx_path, nx->nx_path, strlen(nx2->nx_path)) && in nfsrv_export()
1951 (nx->nx_path[strlen(nx2->nx_path)] == '/'))) { in nfsrv_export()
[all …]
H A Dnfs_syscalls.c370 size_t len = strlen(nx->nx_path); in getfh()
374 if (!strncmp(nx->nx_path, ptr, len)) { in getfh()
1443 nxfs->nxfs_path, ((nxfs->nxfs_path[1] && nx->nx_path[0]) ? "/" : ""), in nfssvc_exportstats()
1444 nx->nx_path); in nfssvc_exportstats()
1529 nxfs->nxfs_path, ((nxfs->nxfs_path[1] && nx->nx_path[0]) ? "/" : ""), in nfssvc_userstats()
1530 nx->nx_path); in nfssvc_userstats()
H A Dnfs.h701 char *nx_path; /* exported file system sub-path */ member