Searched refs:nxfs (Results 1 – 2 of 2) sorted by relevance
| /xnu-12377.41.6/bsd/nfs/ |
| H A D | nfs_subs.c | 1663 struct nfs_exportfs *nxfs, *nxfs2, *nxfs3; in nfsrv_export() local 1714 while ((nxfs = LIST_FIRST(&nfsrv_exports))) { in nfsrv_export() 1715 mp = vfs_getvfs_by_mntonname(nxfs->nxfs_path); in nfsrv_export() 1722 while ((nx = LIST_FIRST(&nxfs->nxfs_exports))) { in nfsrv_export() 1736 LIST_REMOVE(nxfs, nxfs_next); in nfsrv_export() 1737 kfree_data_addr(nxfs->nxfs_path); in nfsrv_export() 1738 kfree_type(struct nfs_exportfs, nxfs); in nfsrv_export() 1766 LIST_FOREACH(nxfs, &nfsrv_exports, nxfs_next) { in nfsrv_export() 1767 if (nxfs->nxfs_id == unxa->nxa_fsid) { in nfsrv_export() 1771 if (nxfs) { in nfsrv_export() [all …]
|
| H A D | nfs_syscalls.c | 229 struct nfs_exportfs *nxfs; in nfsrv_find_exportfs() local 231 LIST_FOREACH(nxfs, &nfsrv_exports, nxfs_next) { in nfsrv_find_exportfs() 232 if (!strncmp(nxfs->nxfs_path, ptr, MAXPATHLEN)) { in nfsrv_find_exportfs() 236 if (nxfs && strncmp(nxfs->nxfs_path, ptr, strlen(nxfs->nxfs_path))) { in nfsrv_find_exportfs() 237 nxfs = NULL; in nfsrv_find_exportfs() 240 return nxfs; in nfsrv_find_exportfs() 296 struct nfs_exportfs *nxfs; in getfh() local 337 if ((nxfs = nfsrv_find_exportfs(ptr)) == NULL) { in getfh() 356 nxfs = nfsrv_find_exportfs(ptr); in getfh() 358 if (nxfs == NULL) { in getfh() [all …]
|