Home
last modified time | relevance | path

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

/xnu-8792.41.9/bsd/nfs/
H A Dnfs_subs.c1747 kfree_data_addr(nx->nx_path); in nfsrv_export()
1923 if (strncmp(path, nx->nx_path, MAXPATHLEN)) { in nfsrv_export()
1938 nx->nx_path = kalloc_data(pathlen, Z_WAITOK); in nfsrv_export()
1939 if (!nx->nx_path) { in nfsrv_export()
1945 bcopy(path, nx->nx_path, pathlen); in nfsrv_export()
1951 if (strncmp(nx->nx_path, nx2->nx_path, MAXPATHLEN) > 0) { in nfsrv_export()
1972 if ((nx3 && !strncmp(nx3->nx_path, nx->nx_path, pathlen - 1) && in nfsrv_export()
1973 (nx3->nx_path[pathlen - 1] == '/')) || in nfsrv_export()
1974 (nx2 && !strncmp(nx2->nx_path, nx->nx_path, strlen(nx2->nx_path)) && in nfsrv_export()
1975 (nx->nx_path[strlen(nx2->nx_path)] == '/'))) { in nfsrv_export()
[all …]
H A Dnfs_syscalls.c337 size_t len = strlen(nx->nx_path); in getfh()
341 if (!strncmp(nx->nx_path, ptr, len)) { in getfh()
1409 nxfs->nxfs_path, ((nxfs->nxfs_path[1] && nx->nx_path[0]) ? "/" : ""), in nfssvc_exportstats()
1410 nx->nx_path); in nfssvc_exportstats()
1495 nxfs->nxfs_path, ((nxfs->nxfs_path[1] && nx->nx_path[0]) ? "/" : ""), in nfssvc_userstats()
1496 nx->nx_path); in nfssvc_userstats()
H A Dnfs.h696 char *nx_path; /* exported file system sub-path */ member