Searched refs:nxfs (Results 1 – 2 of 2) sorted by relevance
| /xnu-8796.141.3/bsd/nfs/ |
| H A D | nfs_subs.c | 1697 struct nfs_exportfs *nxfs, *nxfs2, *nxfs3; in nfsrv_export() local 1748 while ((nxfs = LIST_FIRST(&nfsrv_exports))) { in nfsrv_export() 1749 mp = vfs_getvfs_by_mntonname(nxfs->nxfs_path); in nfsrv_export() 1756 while ((nx = LIST_FIRST(&nxfs->nxfs_exports))) { in nfsrv_export() 1770 LIST_REMOVE(nxfs, nxfs_next); in nfsrv_export() 1771 kfree_data_addr(nxfs->nxfs_path); in nfsrv_export() 1772 kfree_type(struct nfs_exportfs, nxfs); in nfsrv_export() 1800 LIST_FOREACH(nxfs, &nfsrv_exports, nxfs_next) { in nfsrv_export() 1801 if (nxfs->nxfs_id == unxa->nxa_fsid) { in nfsrv_export() 1805 if (nxfs) { in nfsrv_export() [all …]
|
| H A D | nfs_syscalls.c | 225 struct nfs_exportfs *nxfs; in nfsrv_find_exportfs() local 227 LIST_FOREACH(nxfs, &nfsrv_exports, nxfs_next) { in nfsrv_find_exportfs() 228 if (!strncmp(nxfs->nxfs_path, ptr, MAXPATHLEN)) { in nfsrv_find_exportfs() 232 if (nxfs && strncmp(nxfs->nxfs_path, ptr, strlen(nxfs->nxfs_path))) { in nfsrv_find_exportfs() 233 nxfs = NULL; in nfsrv_find_exportfs() 236 return nxfs; in nfsrv_find_exportfs() 292 struct nfs_exportfs *nxfs; in getfh() local 333 if ((nxfs = nfsrv_find_exportfs(ptr)) == NULL) { in getfh() 352 nxfs = nfsrv_find_exportfs(ptr); in getfh() 354 if (nxfs == NULL) { in getfh() [all …]
|